Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
amunoz
structuralvariants_poc
Commits
0f0fc8d7
Commit
0f0fc8d7
authored
Jun 17, 2022
by
lrodrig1
Browse files
add publishDir on bam filtering subworkflow in Nextflow
parent
2f365102
Changes
2
Hide whitespace changes
Inline
Side-by-side
structuralvariants/nextflow/modules/samtools_index.nf
View file @
0f0fc8d7
params.bamsDir = ""
process SAMTOOLS_INDEX {
tag { "samtools index" }
container 'quay.io/biocontainers/samtools:1.5--2'
publishDir "${params.outputDir}/${params.bamsDir}", enabled: params.bamsDir, mode: 'copy'
input:
path input
...
...
structuralvariants/nextflow/subworkflows/bam_filtering.nf
View file @
0f0fc8d7
params.bamsDir = "output_bams"
/*
* Include for bam_filtering
*/
...
...
@@ -6,7 +8,7 @@ include {
} from "../modules/samtools_view"
include {
SAMTOOLS_INDEX
} from "../modules/samtools_index"
} from "../modules/samtools_index"
params([*:params, "bamsDir": ""])
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment