mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:13:09 +00:00
Include falco patch
This commit is contained in:
parent
9e6a91aff9
commit
0bdc119f9c
2 changed files with 18 additions and 1 deletions
|
@ -73,7 +73,8 @@
|
|||
"falco": {
|
||||
"branch": "master",
|
||||
"git_sha": "fc959214036403ad83efe7a41d43d0606c445cda",
|
||||
"installed_by": ["modules"]
|
||||
"installed_by": ["modules"],
|
||||
"patch": "modules/nf-core/falco/falco.diff"
|
||||
},
|
||||
"fastp": {
|
||||
"branch": "master",
|
||||
|
|
16
modules/nf-core/falco/falco.diff
generated
Normal file
16
modules/nf-core/falco/falco.diff
generated
Normal file
|
@ -0,0 +1,16 @@
|
|||
Changes in module 'nf-core/falco'
|
||||
--- modules/nf-core/falco/main.nf
|
||||
+++ modules/nf-core/falco/main.nf
|
||||
@@ -33,7 +33,9 @@
|
||||
"""
|
||||
} else {
|
||||
"""
|
||||
- falco $args --threads $task.cpus ${reads}
|
||||
+ [ ! -f ${prefix}_1.fastq.gz ] && ln -s ${reads[0]} ${prefix}_1.fastq.gz
|
||||
+ [ ! -f ${prefix}_2.fastq.gz ] && ln -s ${reads[1]} ${prefix}_2.fastq.gz
|
||||
+ falco $args --threads $task.cpus ${prefix}_1.fastq.gz ${prefix}_2.fastq.gz
|
||||
|
||||
cat <<-END_VERSIONS > versions.yml
|
||||
"${task.process}":
|
||||
|
||||
************************************************************
|
Loading…
Reference in a new issue