mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Chromap patch (#712)
* Initialise chromap module * Revert "Initialise chromap module" This reverts commit 47c67ae231a6f221ef5b9b7b444b583b5406852b. * Remove samtools version * Add space * Remove whitespace
This commit is contained in:
parent
e9c57083a0
commit
e904107c22
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,6 @@ process CHROMAP_CHROMAP {
|
|||
samtools view $options.args2 -@ ${task.cpus} -bh \\
|
||||
-o ${prefix}.bam ${prefix}.${file_extension}
|
||||
rm ${prefix}.${file_extension}
|
||||
|
||||
samtools --version 2>&1 | sed 's/^.*samtools //; s/Using.*\$//' > ${software}.version.txt
|
||||
"""
|
||||
}
|
||||
if (meta.single_end) {
|
||||
|
@ -76,6 +74,7 @@ process CHROMAP_CHROMAP {
|
|||
-r $fasta \\
|
||||
-1 ${reads.join(',')} \\
|
||||
-o ${prefix}.${file_extension}
|
||||
|
||||
echo "$VERSION" > ${software}.version.txt
|
||||
""" + compression_cmds
|
||||
} else {
|
||||
|
@ -87,6 +86,7 @@ process CHROMAP_CHROMAP {
|
|||
-1 ${reads[0]} \\
|
||||
-2 ${reads[1]} \\
|
||||
-o ${prefix}.${file_extension}
|
||||
|
||||
echo "$VERSION" > ${software}.version.txt
|
||||
""" + compression_cmds
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue