Skip to content

Commit

Permalink
Merge branch 'master' into regtools_bump_versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lpantano authored Nov 22, 2024
2 parents b4eeae5 + d5d0870 commit 4920542
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

- name: List nf-test files
id: list
uses: adamrtalbot/detect-nf-test-changes@e114e734c3bfa4599151087dcbc457ff38e5bf2c
uses: adamrtalbot/detect-nf-test-changes@6bf6fd9fe0fb63a0362fb0e09de5acb6d055a754 # v0.0.5
with:
head: ${{ github.sha }}
base: ${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
.map(path => path.replace('modules/nf-core/', '')
.split('/')
.slice(0, 2)
.filter(x => x !== 'main.nf' && x !== 'tests')
.filter(x => x !== 'main.nf' && x !== 'tests' && x !== 'meta.yml' && x !== 'environment.yml')
.join('/')))];
- name: Get subworkflow name
Expand All @@ -94,7 +94,7 @@ jobs:
.map(path => path.replace('subworkflows/nf-core/', '')
.split('/')
.slice(0,2)
.filter(x => x !== 'main.nf' && x !== 'tests')
.filter(x => x !== 'main.nf' && x !== 'tests' && x !== 'meta.yml' && x !== 'environment.yml')
.join('/')))];
- name: debug
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/nonpareil/curve/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process NONPAREIL_CURVE {
tuple val(meta), path(npo)

output:
tuple val(meta), path("*.png"), emit: png
tuple val(meta), path("*.png"), optional: true, emit: png
path "versions.yml" , emit: versions

when:
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/pilon/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ process PILON {
PILON_JAR=\$(dirname \$(which pilon))/../share/pilon*/pilon.jar
java -Xmx${mem_mb}M -jar \$PILON_JAR \\
--genome $fasta \\
--output ${meta.id} \\
--output ${prefix} \\
$args \\
--$pilon_mode $bam
Expand Down
5 changes: 1 addition & 4 deletions modules/nf-core/quartonotebook/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
include {
dumpParamsYaml ;
indentCodeBlock
} from "./parametrize"
include { dumpParamsYaml ; indentCodeBlock } from "./parametrize"

// NB: You'll likely want to override this with a container containing all
// required dependencies for your analyses. Or use wave to build the container
Expand Down

0 comments on commit 4920542

Please sign in to comment.