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
fb76c9c7
Commit
fb76c9c7
authored
Jun 14, 2022
by
lrodrig1
Browse files
change order of steps and add two outputs in bwa_index.nf subworkflow
parent
0b953bd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
structuralvariants/nextflow/subworkflows/bwa_index.nf
View file @
fb76c9c7
/*
* Includes for bwa_index
*/
include {
SAMTOOLS_FAIDX
} from "../modules/samtools_faidx"
include {
BWA_INDEX
} from "../modules/bwa_index"
include {
SAMTOOLS_FAIDX
} from "../modules/samtools_faidx"
/*
* Subworkflow bwa_index
...
...
@@ -17,9 +16,11 @@ workflow SUB_BWA_INDEX {
reference_fasta
main:
// TODO gunzip
SAMTOOLS_FAIDX(reference_fasta)
BWA_INDEX(reference_fasta)
SAMTOOLS_FAIDX(reference_fasta, BWA_INDEX.out)
emit:
output = SAMTOOLS_FAIDX.out
}
\ No newline at end of file
fai = SAMTOOLS_FAIDX.out
indexs = BWA_INDEX.out
}
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