style: Remove newline at end of files

This commit is contained in:
Edmund Miller 2021-02-03 13:22:42 -06:00
parent 5f810beaa4
commit b62d01285e
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D
229 changed files with 18304 additions and 18310 deletions

View file

@ -3,10 +3,10 @@ root = true
[*] [*]
charset = utf-8 charset = utf-8
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = false
trim_trailing_whitespace = true trim_trailing_whitespace = true
indent_size = 4 indent_size = 4
indent_style = space indent_style = space
[*.{yml,yaml}] [*.{yml,yaml}]
indent_size = 2 indent_size = 2

2
.gitattributes vendored
View file

@ -1 +1 @@
*.config linguist-language=nextflow *.config linguist-language=nextflow

2
.gitignore vendored
View file

@ -4,4 +4,4 @@ results/
test_output/ test_output/
output/ output/
.DS_Store .DS_Store
*.code-workspace *.code-workspace

View file

@ -8,4 +8,4 @@ header-increment: false
no-duplicate-header: no-duplicate-header:
siblings_only: true siblings_only: true
ul-indent: ul-indent:
indent: 4 indent: 4

View file

@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.

View file

@ -40,11 +40,11 @@ We have written a helper command in the `nf-core/tools` package that uses the Gi
```console ```console
$ nf-core modules list $ nf-core modules list
,--./,-. ,--./,-.
___ __ __ __ ___ /,-._.--~\ ___ __ __ __ ___ /,-._.--~\
|\ | |__ __ / ` / \ |__) |__ } { |\ | |__ __ / ` / \ |__) |__ } {
| \| | \__, \__/ | \ |___ \`-._,-`-, | \| | \__, \__/ | \ |___ \`-._,-`-,
`._,._,' `._,._,'
nf-core/tools version 1.10.2 nf-core/tools version 1.10.2
@ -67,11 +67,11 @@ We have written a helper command in the `nf-core/tools` package that uses the Gi
```console ```console
$ nf-core modules install . fastqc $ nf-core modules install . fastqc
,--./,-. ,--./,-.
___ __ __ __ ___ /,-._.--~\ ___ __ __ __ ___ /,-._.--~\
|\ | |__ __ / ` / \ |__) |__ } { |\ | |__ __ / ` / \ |__) |__ } {
| \| | \__, \__/ | \ |___ \`-._,-`-, | \| | \__, \__/ | \ |___ \`-._,-`-,
`._,._,' `._,._,'
nf-core/tools version 1.10.2 nf-core/tools version 1.10.2
@ -99,11 +99,11 @@ We have written a helper command in the `nf-core/tools` package that uses the Gi
...truncated... ...truncated...
Commands: Commands:
list List available software modules. list List available software modules.
install Add a DSL2 software wrapper module to a pipeline. install Add a DSL2 software wrapper module to a pipeline.
update Update one or all software wrapper modules. (NOT YET IMPLEMENTED) update Update one or all software wrapper modules. (NOT YET IMPLEMENTED)
remove Remove a software wrapper from a pipeline. (NOT YET IMPLEMENTED) remove Remove a software wrapper from a pipeline. (NOT YET IMPLEMENTED)
check Check that imported module code has not been modified. (NOT YET IMPLEMENTED) check Check that imported module code has not been modified. (NOT YET IMPLEMENTED)
``` ```
## Adding a new module file ## Adding a new module file
@ -305,4 +305,4 @@ nextflow run /path/to/pipeline/ -c /path/to/custom_module.conf
> Note that the nf-core/tools helper package has a `download` command to download all required pipeline > Note that the nf-core/tools helper package has a `download` command to download all required pipeline
> files + singularity containers + institutional configs + modules in one go for you, to make this process easier. > files + singularity containers + institutional configs + modules in one go for you, to make this process easier.
--> -->

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -86,4 +86,4 @@ process SOFTWARE_TOOL {
echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//' > ${software}.version.txt echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//' > ${software}.version.txt
""" """
} }

View file

@ -75,4 +75,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
## TODO nf-core: Add your GitHub username below ## TODO nf-core: Add your GitHub username below
authors: authors:
- "@your_github_username" - "@your_github_username"

View file

@ -57,4 +57,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -56,4 +56,4 @@ process BOWTIE_ALIGN {
echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//' > ${software}.version.txt echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//' > ${software}.version.txt
""" """
} }

View file

@ -66,4 +66,4 @@ output:
description: Unaligned FastQ files description: Unaligned FastQ files
pattern: "*.fastq.gz" pattern: "*.fastq.gz"
authors: authors:
- "@kevinmenden" - "@kevinmenden"

View file

@ -57,4 +57,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -32,4 +32,4 @@ process BOWTIE_BUILD {
bowtie-build --threads $task.cpus $fasta bowtie/${fasta.baseName} bowtie-build --threads $task.cpus $fasta bowtie/${fasta.baseName}
echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//' > ${software}.version.txt echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//' > ${software}.version.txt
""" """
} }

View file

@ -49,4 +49,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@kevinmenden" - "@kevinmenden"
- "@drpatelh" - "@drpatelh"

View file

@ -57,4 +57,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -69,4 +69,4 @@ process BOWTIE2_ALIGN {
echo \$(bowtie2 --version 2>&1) | sed 's/^.*bowtie2-align-s version //; s/ .*\$//' > ${software}.version.txt echo \$(bowtie2 --version 2>&1) | sed 's/^.*bowtie2-align-s version //; s/ .*\$//' > ${software}.version.txt
""" """
} }
} }

View file

@ -71,4 +71,4 @@ output:
pattern: "*.log" pattern: "*.log"
authors: authors:
- "@joseespinosa" - "@joseespinosa"
- "@drpatelh" - "@drpatelh"

View file

@ -57,4 +57,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -32,4 +32,4 @@ process BOWTIE2_BUILD {
bowtie2-build $options.args --threads $task.cpus $fasta bowtie2/${fasta.baseName} bowtie2-build $options.args --threads $task.cpus $fasta bowtie2/${fasta.baseName}
echo \$(bowtie2 --version 2>&1) | sed 's/^.*bowtie2-align-s version //; s/ .*\$//' > ${software}.version.txt echo \$(bowtie2 --version 2>&1) | sed 's/^.*bowtie2-align-s version //; s/ .*\$//' > ${software}.version.txt
""" """
} }

View file

@ -50,4 +50,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@joseespinosa" - "@joseespinosa"
- "@drpatelh" - "@drpatelh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -31,4 +31,4 @@ process BWA_INDEX {
bwa index $options.args $fasta bwa index $options.args $fasta
echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt
""" """
} }

View file

@ -49,4 +49,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"
- "@maxulysse" - "@maxulysse"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -42,4 +42,4 @@ process BWA_MEM {
echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt
""" """
} }

View file

@ -66,4 +66,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"
- "@jeremy1805" - "@jeremy1805"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -39,4 +39,4 @@ process CUTADAPT {
> ${prefix}.cutadapt.log > ${prefix}.cutadapt.log
echo \$(cutadapt --version) > ${software}.version.txt echo \$(cutadapt --version) > ${software}.version.txt
""" """
} }

View file

@ -63,4 +63,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"
- "@kevinmenden" - "@kevinmenden"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -41,4 +41,4 @@ process DEEPTOOLS_COMPUTEMATRIX {
computeMatrix --version | sed -e "s/computeMatrix //g" > ${software}.version.txt computeMatrix --version | sed -e "s/computeMatrix //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -43,4 +43,4 @@ process DEEPTOOLS_PLOTFINGERPRINT {
plotFingerprint --version | sed -e "s/plotFingerprint //g" > ${software}.version.txt plotFingerprint --version | sed -e "s/plotFingerprint //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -38,4 +38,4 @@ process DEEPTOOLS_PLOTHEATMAP {
plotHeatmap --version | sed -e "s/plotHeatmap //g" > ${software}.version.txt plotHeatmap --version | sed -e "s/plotHeatmap //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -38,4 +38,4 @@ process DEEPTOOLS_PLOTPROFILE {
plotProfile --version | sed -e "s/plotProfile //g" > ${software}.version.txt plotProfile --version | sed -e "s/plotProfile //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -36,4 +36,4 @@ process DSH_FILTERBED {
echo \$(dsh-bio --version 2>&1) | grep -o 'dsh-bio-tools .*' | cut -f2 -d ' ' > ${software}.version.txt echo \$(dsh-bio --version 2>&1) | grep -o 'dsh-bio-tools .*' | cut -f2 -d ' ' > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ output:
description: File containing software version description: File containing software version
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@heuermh" - "@heuermh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -37,4 +37,4 @@ process DSH_SPLITBED {
echo \$(dsh-bio --version 2>&1) | grep -o 'dsh-bio-tools .*' | cut -f2 -d ' ' > ${software}.version.txt echo \$(dsh-bio --version 2>&1) | grep -o 'dsh-bio-tools .*' | cut -f2 -d ' ' > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ output:
description: File containing software version description: File containing software version
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@heuermh" - "@heuermh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -69,4 +69,4 @@ process FASTP {
echo \$(fastp --version 2>&1) | sed -e "s/fastp //g" > ${software}.version.txt echo \$(fastp --version 2>&1) | sed -e "s/fastp //g" > ${software}.version.txt
""" """
} }
} }

View file

@ -76,4 +76,4 @@ output:
pattern: "*fail.fastq.gz" pattern: "*fail.fastq.gz"
authors: authors:
- "@drpatelh" - "@drpatelh"
- "@kevinmenden" - "@kevinmenden"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -44,4 +44,4 @@ process FASTQC {
fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt
""" """
} }
} }

View file

@ -69,4 +69,4 @@ authors:
- "@drpatelh" - "@drpatelh"
- "@grst" - "@grst"
- "@ewels" - "@ewels"
- "@FelixKrueger" - "@FelixKrueger"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -30,4 +30,4 @@ process GFFREAD {
gffread $gff $options.args -o ${gff.baseName}.gtf gffread $gff $options.args -o ${gff.baseName}.gtf
echo \$(gffread --version 2>&1) > ${software}.version.txt echo \$(gffread --version 2>&1) > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -90,4 +90,4 @@ process HISAT2_ALIGN {
echo $VERSION > ${software}.version.txt echo $VERSION > ${software}.version.txt
""" """
} }
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -64,4 +64,4 @@ process HISAT2_BUILD {
echo $VERSION > ${software}.version.txt echo $VERSION > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -31,4 +31,4 @@ process HISAT2_EXTRACTSPLICESITES {
hisat2_extract_splice_sites.py $gtf > ${gtf.baseName}.splice_sites.txt hisat2_extract_splice_sites.py $gtf > ${gtf.baseName}.splice_sites.txt
echo $VERSION > ${software}.version.txt echo $VERSION > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -43,4 +43,4 @@ process HOMER_ANNOTATEPEAKS {
echo $VERSION > ${software}.version.txt echo $VERSION > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -48,4 +48,4 @@ process MACS2_CALLPEAK {
macs2 --version | sed -e "s/macs2 //g" > ${software}.version.txt macs2 --version | sed -e "s/macs2 //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -32,4 +32,4 @@ process MULTIQC {
multiqc -f $options.args . multiqc -f $options.args .
multiqc --version | sed -e "s/multiqc, version //g" > ${software}.version.txt multiqc --version | sed -e "s/multiqc, version //g" > ${software}.version.txt
""" """
} }

View file

@ -57,4 +57,4 @@ output:
authors: authors:
- "@abhi18av" - "@abhi18av"
- "@bunop" - "@bunop"
- "@drpatelh" - "@drpatelh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -36,4 +36,4 @@ process PANGOLIN {
pangolin --version | sed "s/pangolin //g" > ${software}.version.txt pangolin --version | sed "s/pangolin //g" > ${software}.version.txt
""" """
} }

View file

@ -54,4 +54,4 @@ output:
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@kevinmenden" - "@kevinmenden"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -37,4 +37,4 @@ process PHANTOMPEAKQUALTOOLS {
Rscript -e "library(caTools); source(\\"\$RUN_SPP\\")" -c="$bam" -savp="${prefix}.spp.pdf" -savd="${prefix}.spp.Rdata" -out="${prefix}.spp.out" -p=$task.cpus Rscript -e "library(caTools); source(\\"\$RUN_SPP\\")" -c="$bam" -savp="${prefix}.spp.pdf" -savd="${prefix}.spp.Rdata" -out="${prefix}.spp.out" -p=$task.cpus
echo $VERSION > ${software}.version.txt echo $VERSION > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -47,4 +47,4 @@ process PICARD_COLLECTMULTIPLEMETRICS {
echo \$(picard CollectMultipleMetrics --version 2>&1) | grep -o 'Version.*' | cut -f2- -d: > ${software}.version.txt echo \$(picard CollectMultipleMetrics --version 2>&1) | grep -o 'Version.*' | cut -f2- -d: > ${software}.version.txt
""" """
} }

View file

@ -67,4 +67,4 @@ output:
description: File containing software version description: File containing software version
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -46,4 +46,4 @@ process PICARD_MARKDUPLICATES {
echo \$(picard MarkDuplicates --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d: > ${software}.version.txt echo \$(picard MarkDuplicates --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d: > ${software}.version.txt
""" """
} }

View file

@ -64,4 +64,4 @@ output:
description: File containing software version description: File containing software version
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -51,4 +51,4 @@ process PICARD_MERGESAMFILES {
echo \$(picard MergeSamFiles --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d: > ${software}.version.txt echo \$(picard MergeSamFiles --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d: > ${software}.version.txt
""" """
} }
} }

View file

@ -58,4 +58,4 @@ output:
description: File containing software version description: File containing software version
pattern: "*.{version.txt}" pattern: "*.{version.txt}"
authors: authors:
- "@drpatelh" - "@drpatelh"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -42,4 +42,4 @@ process PRESEQ_LCEXTRAP {
echo \$(preseq 2>&1) | sed 's/^.*Version: //; s/Usage:.*\$//' > ${software}.version.txt echo \$(preseq 2>&1) | sed 's/^.*Version: //; s/Usage:.*\$//' > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -54,4 +54,4 @@ process QUALIMAP_RNASEQ {
echo \$(qualimap 2>&1) | sed 's/^.*QualiMap v.//; s/Built.*\$//' > ${software}.version.txt echo \$(qualimap 2>&1) | sed 's/^.*QualiMap v.//; s/Built.*\$//' > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -45,4 +45,4 @@ process QUAST {
ln -s ${prefix}/report.tsv ln -s ${prefix}/report.tsv
echo \$(quast.py --version 2>&1) | sed 's/^.*QUAST v//; s/ .*\$//' > ${software}.version.txt echo \$(quast.py --version 2>&1) | sed 's/^.*QUAST v//; s/ .*\$//' > ${software}.version.txt
""" """
} }

View file

@ -65,4 +65,4 @@ output:
authors: authors:
- "@drpatelh" - "@drpatelh"
- "@kevinmenden" - "@kevinmenden"

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -58,4 +58,4 @@ process RSEM_CALCULATEEXPRESSION {
rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g" > ${software}.version.txt rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -65,4 +65,4 @@ process RSEM_PREPAREREFERENCE {
rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g" > ${software}.version.txt rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g" > ${software}.version.txt
""" """
} }
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -36,4 +36,4 @@ process RSEQC_BAMSTAT {
bam_stat.py --version | sed -e "s/bam_stat.py //g" > ${software}.version.txt bam_stat.py --version | sed -e "s/bam_stat.py //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -38,4 +38,4 @@ process RSEQC_INFEREXPERIMENT {
infer_experiment.py --version | sed -e "s/infer_experiment.py //g" > ${software}.version.txt infer_experiment.py --version | sed -e "s/infer_experiment.py //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -50,4 +50,4 @@ process RSEQC_INNERDISTANCE {
inner_distance.py --version | sed -e "s/inner_distance.py //g" > ${software}.version.txt inner_distance.py --version | sed -e "s/inner_distance.py //g" > ${software}.version.txt
""" """
} }
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

View file

@ -45,4 +45,4 @@ process RSEQC_JUNCTIONANNOTATION {
junction_annotation.py --version | sed -e "s/junction_annotation.py //g" > ${software}.version.txt junction_annotation.py --version | sed -e "s/junction_annotation.py //g" > ${software}.version.txt
""" """
} }

View file

@ -56,4 +56,4 @@ def saveFiles(Map args) {
return "${getPathFromList(path_list)}/$args.filename" return "${getPathFromList(path_list)}/$args.filename"
} }
} }
} }

Some files were not shown because too many files have changed in this diff Show more