1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-22 03:59:55 +00:00

Tweaks to MultiQC based on full test experiments

This commit is contained in:
James Fellows Yates 2023-01-24 15:06:42 +01:00
parent e7d7affcd0
commit a993300099
5 changed files with 33 additions and 9 deletions

View file

@ -268,12 +268,8 @@ table_columns_visible:
non-primary_alignments: False
reads_MQ0_percent: False
error_rate: False
Kraken:
"% Unclassified": False
"% Top 5": False
Bracken:
"% Unclassified": False
"% Top 5": False
Kraken: False
Bracken: False
Centrifuge: False
DIAMOND:
queries_aligned: False

View file

@ -158,7 +158,7 @@ process {
[
path: { "${params.outdir}/porechop" },
mode: params.publish_dir_mode,
pattern: '*.fastq.gz',
pattern: '*_porechopped.fastq.gz',
enabled: params.save_preprocessed_reads
],
[

View file

@ -179,7 +179,8 @@
"porechop/porechop": {
"branch": "master",
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
"installed_by": ["modules"]
"installed_by": ["modules"],
"patch": "modules/nf-core/porechop/porechop/porechop-porechop.diff"
},
"prinseqplusplus": {
"branch": "master",

View file

@ -22,12 +22,16 @@ process PORECHOP_PORECHOP {
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
"""
## To ensure ID matches rest of pipeline based on meta.id rather than input file name
mv $reads ${prefix}.fastq.gz
porechop \\
-i $reads \\
-t $task.cpus \\
$args \\
-o ${prefix}.fastq.gz \\
-o ${prefix}_porechopped.fastq.gz \\
> ${prefix}.log
cat <<-END_VERSIONS > versions.yml
"${task.process}":
porechop: \$( porechop --version )

View file

@ -0,0 +1,23 @@
Changes in module 'nf-core/porechop/porechop'
--- modules/nf-core/porechop/porechop/main.nf
+++ modules/nf-core/porechop/porechop/main.nf
@@ -22,12 +22,16 @@
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
"""
+ ## To ensure ID matches rest of pipeline based on meta.id rather than input file name
+ mv $reads ${prefix}.fastq.gz
+
porechop \\
-i $reads \\
-t $task.cpus \\
$args \\
- -o ${prefix}.fastq.gz \\
+ -o ${prefix}_porechopped.fastq.gz \\
> ${prefix}.log
+
cat <<-END_VERSIONS > versions.yml
"${task.process}":
porechop: \$( porechop --version )
************************************************************