Skip to content

Commit 35f4eee

Browse files
Merge pull request #144 from EBI-Metagenomics/bbmap_reformat_standardise
Tidied up bbmap_reformat_standardise
2 parents f556d6c + 46878ee commit 35f4eee

File tree

4 files changed

+5
-33
lines changed

4 files changed

+5
-33
lines changed

modules/ebi-metagenomics/bbmap/reformat_standardise/environment.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ channels:
44
- conda-forge
55
- bioconda
66
dependencies:
7-
# TODO nf-core: List required Conda package(s).
8-
# Software MUST be pinned to channel (i.e. "bioconda"), version (i.e. "1.10").
9-
# For Conda, the build (i.e. "h9402c20_2") must be EXCLUDED to support installation on different operating systems.
107
- "bioconda::bbmap=39.33"

modules/ebi-metagenomics/bbmap/reformat_standardise/license.txt

Lines changed: 0 additions & 25 deletions
This file was deleted.

modules/ebi-metagenomics/bbmap/reformat_standardise/main.nf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ process BBMAP_REFORMAT_STANDARDISE {
1414
output:
1515
tuple val(meta), path("*_reformated.${out_fmt}") , emit: reformated
1616
tuple val(meta), path("${prefix}_singleton.${out_fmt}"), optional: true, emit: singleton
17-
path "versions.yml" , emit: versions
18-
path "*.log" , emit: log
17+
path "versions.yml" , emit: versions
1918

2019
when:
2120
task.ext.when == null || task.ext.when
@@ -39,8 +38,7 @@ process BBMAP_REFORMAT_STANDARDISE {
3938
$interleaved_cmd \\
4039
$paired_cmd \\
4140
threads=${task.cpus} \\
42-
${args} \\
43-
&> ${prefix}.reformat.sh.log
41+
${args}
4442
4543
cat <<-END_VERSIONS > versions.yml
4644
"${task.process}":

modules/ebi-metagenomics/bbmap/reformat_standardise/meta.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tools:
1414
documentation: "https://jgi.doe.gov/data-and-tools/bbtools/bb-tools-user-guide"
1515
tool_dev_url: "https://sourceforge.net/projects/bbmap"
1616
doi: ""
17-
licence: ["see licence.txt"]
17+
licence: ["https://github.com/bbushnell/BBTools/blob/master/license.txt"]
1818
identifier: null
1919

2020
input:
@@ -26,6 +26,8 @@ input:
2626
type: file
2727
description: "Input FASTQ file(s). Can be single-end or paired-end (as list). Paired-end reads can be interleaved (single file) or de-interleaved (two files)."
2828
pattern: "*.{fastq,fq,fastq.gz,fq.gz}"
29+
ontologies:
30+
- edam: http://edamontology.org/format_1930 # FASTQ
2931
- out_fmt:
3032
type: string
3133
description: "Output file format (e.g., 'fastq.gz', 'fasta.gz')"

0 commit comments

Comments
 (0)