mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Lint modules ci (#389)
* ci: Add modules lint step Moved it ahead of the nextflow install so ideally it'll fail before we bother doing any more setup * ci: _ => / * Update tests/config/pytest_software.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
710ab76b90
commit
a3684d9594
88 changed files with 233 additions and 225 deletions
20
.github/workflows/pytest-workflow.yml
vendored
20
.github/workflows/pytest-workflow.yml
vendored
|
@ -40,6 +40,20 @@ jobs:
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: "3.x"
|
||||||
|
- name: Install dependencies
|
||||||
|
run: python -m pip install --upgrade pip pytest-workflow
|
||||||
|
# FIXME: Remove this when nf-core modules lint stabilizes
|
||||||
|
- name: Install nf-core tools development version
|
||||||
|
run: python -m pip install --upgrade --force-reinstall git+https://github.com/nf-core/tools.git@dev
|
||||||
|
|
||||||
|
- name: Lint ${{ matrix.tags }}
|
||||||
|
run: nf-core modules lint . -t ${{ matrix.tags }}
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /usr/local/bin/nextflow
|
path: /usr/local/bin/nextflow
|
||||||
|
@ -54,12 +68,6 @@ jobs:
|
||||||
wget -qO- get.nextflow.io | bash
|
wget -qO- get.nextflow.io | bash
|
||||||
sudo mv nextflow /usr/local/bin/
|
sudo mv nextflow /usr/local/bin/
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: "3.x"
|
|
||||||
- name: Install dependencies
|
|
||||||
run: python -m pip install --upgrade pip pytest-workflow
|
|
||||||
|
|
||||||
- name: Set up Singularity
|
- name: Set up Singularity
|
||||||
if: matrix.profile == 'singularity'
|
if: matrix.profile == 'singularity'
|
||||||
|
|
|
@ -6,85 +6,85 @@ allelecounter:
|
||||||
- software/allelecounter/**
|
- software/allelecounter/**
|
||||||
- tests/software/allelecounter/**
|
- tests/software/allelecounter/**
|
||||||
|
|
||||||
bandage_image:
|
bandage/image:
|
||||||
- software/bandage/image/**
|
- software/bandage/image/**
|
||||||
- tests/software/bandage/image/**
|
- tests/software/bandage/image/**
|
||||||
|
|
||||||
bcftools_consensus:
|
bcftools/consensus:
|
||||||
- software/bcftools/consensus/**
|
- software/bcftools/consensus/**
|
||||||
- tests/software/bcftools/consensus/**
|
- tests/software/bcftools/consensus/**
|
||||||
|
|
||||||
bcftools_filter:
|
bcftools/filter:
|
||||||
- software/bcftools/filter/**
|
- software/bcftools/filter/**
|
||||||
- tests/software/bcftools/filter/**
|
- tests/software/bcftools/filter/**
|
||||||
|
|
||||||
bcftools_isec:
|
bcftools/isec:
|
||||||
- software/bcftools/isec/**
|
- software/bcftools/isec/**
|
||||||
- tests/software/bcftools/isec/**
|
- tests/software/bcftools/isec/**
|
||||||
|
|
||||||
bcftools_merge:
|
bcftools/merge:
|
||||||
- software/bcftools/merge/**
|
- software/bcftools/merge/**
|
||||||
- tests/software/bcftools/merge/**
|
- tests/software/bcftools/merge/**
|
||||||
|
|
||||||
bcftools_mpileup:
|
bcftools/mpileup:
|
||||||
- software/bcftools/mpileup/**
|
- software/bcftools/mpileup/**
|
||||||
- tests/software/bcftools/mpileup/**
|
- tests/software/bcftools/mpileup/**
|
||||||
|
|
||||||
bcftools_stats:
|
bcftools/stats:
|
||||||
- software/bcftools/stats/**
|
- software/bcftools/stats/**
|
||||||
- tests/software/bcftools/stats/**
|
- tests/software/bcftools/stats/**
|
||||||
|
|
||||||
bedtools_complement:
|
bedtools/complement:
|
||||||
- software/bedtools/complement/**
|
- software/bedtools/complement/**
|
||||||
- tests/software/bedtools/complement/**
|
- tests/software/bedtools/complement/**
|
||||||
|
|
||||||
bedtools_genomecov:
|
bedtools/genomecov:
|
||||||
- software/bedtools/genomecov/**
|
- software/bedtools/genomecov/**
|
||||||
- tests/software/bedtools/genomecov/**
|
- tests/software/bedtools/genomecov/**
|
||||||
|
|
||||||
bedtools_getfasta:
|
bedtools/getfasta:
|
||||||
- software/bedtools/getfasta/**
|
- software/bedtools/getfasta/**
|
||||||
- tests/software/bedtools/getfasta/**
|
- tests/software/bedtools/getfasta/**
|
||||||
|
|
||||||
bedtools_intersect:
|
bedtools/intersect:
|
||||||
- software/bedtools/intersect/**
|
- software/bedtools/intersect/**
|
||||||
- tests/software/bedtools/intersect/**
|
- tests/software/bedtools/intersect/**
|
||||||
|
|
||||||
bedtools_maskfasta:
|
bedtools/maskfasta:
|
||||||
- software/bedtools/maskfasta/**
|
- software/bedtools/maskfasta/**
|
||||||
- tests/software/bedtools/maskfasta/**
|
- tests/software/bedtools/maskfasta/**
|
||||||
|
|
||||||
bedtools_merge:
|
bedtools/merge:
|
||||||
- software/bedtools/merge/**
|
- software/bedtools/merge/**
|
||||||
- tests/software/bedtools/merge/**
|
- tests/software/bedtools/merge/**
|
||||||
|
|
||||||
bedtools_slop:
|
bedtools/slop:
|
||||||
- software/bedtools/slop/**
|
- software/bedtools/slop/**
|
||||||
- tests/software/bedtools/slop/**
|
- tests/software/bedtools/slop/**
|
||||||
|
|
||||||
bedtools_sort:
|
bedtools/sort:
|
||||||
- software/bedtools/sort/**
|
- software/bedtools/sort/**
|
||||||
- tests/software/bedtools/sort/**
|
- tests/software/bedtools/sort/**
|
||||||
|
|
||||||
bismark_align:
|
bismark/align:
|
||||||
- software/bismark/align/**
|
- software/bismark/align/**
|
||||||
- software/bismark/genomepreparation/**
|
- software/bismark/genomepreparation/**
|
||||||
- tests/software/bismark/align/**
|
- tests/software/bismark/align/**
|
||||||
|
|
||||||
bismark_deduplicate:
|
bismark/deduplicate:
|
||||||
- software/bismark/deduplicate/**
|
- software/bismark/deduplicate/**
|
||||||
- tests/software/bismark/deduplicate/**
|
- tests/software/bismark/deduplicate/**
|
||||||
|
|
||||||
bismark_genomepreparation:
|
bismark/genomepreparation:
|
||||||
- software/bismark/genomepreparation/**
|
- software/bismark/genomepreparation/**
|
||||||
- tests/software/bismark/genomepreparation/**
|
- tests/software/bismark/genomepreparation/**
|
||||||
|
|
||||||
bismark_methylationextractor:
|
bismark/methylationextractor:
|
||||||
- software/bismark/methylationextractor/**
|
- software/bismark/methylationextractor/**
|
||||||
- software/bismark/genomepreparation/**
|
- software/bismark/genomepreparation/**
|
||||||
- tests/software/bismark/methylationextractor/**
|
- tests/software/bismark/methylationextractor/**
|
||||||
|
|
||||||
bismark_report:
|
bismark/report:
|
||||||
- software/bismark/genomepreparation/**
|
- software/bismark/genomepreparation/**
|
||||||
- software/bismark/align/**
|
- software/bismark/align/**
|
||||||
- software/bismark/deduplicate/**
|
- software/bismark/deduplicate/**
|
||||||
|
@ -92,7 +92,7 @@ bismark_report:
|
||||||
- software/bismark/report/**
|
- software/bismark/report/**
|
||||||
- tests/software/bismark/report/**
|
- tests/software/bismark/report/**
|
||||||
|
|
||||||
bismark_summary:
|
bismark/summary:
|
||||||
- software/bismark/genomepreparation/**
|
- software/bismark/genomepreparation/**
|
||||||
- software/bismark/align/**
|
- software/bismark/align/**
|
||||||
- software/bismark/deduplicate/**
|
- software/bismark/deduplicate/**
|
||||||
|
@ -100,57 +100,57 @@ bismark_summary:
|
||||||
- software/bismark/summary/**
|
- software/bismark/summary/**
|
||||||
- tests/software/bismark/summary/**
|
- tests/software/bismark/summary/**
|
||||||
|
|
||||||
blast_blastn:
|
blast/blastn:
|
||||||
- software/blast/blastn/**
|
- software/blast/blastn/**
|
||||||
- tests/software/blast/blastn/**
|
- tests/software/blast/blastn/**
|
||||||
|
|
||||||
blast_makeblastdb:
|
blast/makeblastdb:
|
||||||
- software/blast/makeblastdb/**
|
- software/blast/makeblastdb/**
|
||||||
- tests/software/blast/makeblastdb/**
|
- tests/software/blast/makeblastdb/**
|
||||||
|
|
||||||
bowtie2_align:
|
bowtie2/align:
|
||||||
- software/bowtie2/align/**
|
- software/bowtie2/align/**
|
||||||
- software/bowtie2/build/**
|
- software/bowtie2/build/**
|
||||||
- tests/software/bowtie2/align/**
|
- tests/software/bowtie2/align/**
|
||||||
|
|
||||||
bowtie2_build:
|
bowtie2/build:
|
||||||
- software/bowtie2/build/**
|
- software/bowtie2/build/**
|
||||||
- tests/software/bowtie2/build_test/**
|
- tests/software/bowtie2/build_test/**
|
||||||
|
|
||||||
bowtie_align:
|
bowtie/align:
|
||||||
- software/bowtie/align/**
|
- software/bowtie/align/**
|
||||||
- software/bowtie/build/**
|
- software/bowtie/build/**
|
||||||
- tests/software/bowtie/align/**
|
- tests/software/bowtie/align/**
|
||||||
|
|
||||||
bowtie_build:
|
bowtie/build:
|
||||||
- software/bowtie/build/**
|
- software/bowtie/build/**
|
||||||
- tests/software/bowtie/build_test/**
|
- tests/software/bowtie/build_test/**
|
||||||
|
|
||||||
bwa_index:
|
bwa/index:
|
||||||
- software/bwa/index/**
|
- software/bwa/index/**
|
||||||
- tests/software/bwa/index/**
|
- tests/software/bwa/index/**
|
||||||
|
|
||||||
bwa_mem:
|
bwa/mem:
|
||||||
- software/bwa/mem/**
|
- software/bwa/mem/**
|
||||||
- tests/software/bwa/mem/**
|
- tests/software/bwa/mem/**
|
||||||
|
|
||||||
bwamem2_index:
|
bwamem2/index:
|
||||||
- software/bwamem2/index/**
|
- software/bwamem2/index/**
|
||||||
- tests/software/bwamem2/index/**
|
- tests/software/bwamem2/index/**
|
||||||
|
|
||||||
bwamem2_mem:
|
bwamem2/mem:
|
||||||
- software/bwamem2/mem/**
|
- software/bwamem2/mem/**
|
||||||
- tests/software/bwamem2/mem/**
|
- tests/software/bwamem2/mem/**
|
||||||
|
|
||||||
bwameth_align:
|
bwameth/align:
|
||||||
- software/bwameth/align/**
|
- software/bwameth/align/**
|
||||||
- tests/software/bwameth/align/**
|
- tests/software/bwameth/align/**
|
||||||
|
|
||||||
bwameth_index:
|
bwameth/index:
|
||||||
- software/bwameth/index/**
|
- software/bwameth/index/**
|
||||||
- tests/software/bwameth/index/**
|
- tests/software/bwameth/index/**
|
||||||
|
|
||||||
cat_fastq:
|
cat/fastq:
|
||||||
- software/cat/fastq/**
|
- software/cat/fastq/**
|
||||||
- tests/software/cat/fastq/**
|
- tests/software/cat/fastq/**
|
||||||
|
|
||||||
|
@ -162,11 +162,11 @@ cutadapt:
|
||||||
- software/cutadapt/**
|
- software/cutadapt/**
|
||||||
- tests/software/cutadapt/**
|
- tests/software/cutadapt/**
|
||||||
|
|
||||||
dsh_filterbed:
|
dsh/filterbed:
|
||||||
- software/dsh/filterbed/**
|
- software/dsh/filterbed/**
|
||||||
- tests/software/dsh/filterbed/**
|
- tests/software/dsh/filterbed/**
|
||||||
|
|
||||||
dsh_splitbed:
|
dsh/splitbed:
|
||||||
- software/dsh/splitbed/**
|
- software/dsh/splitbed/**
|
||||||
- tests/software/dsh/splitbed/**
|
- tests/software/dsh/splitbed/**
|
||||||
|
|
||||||
|
@ -190,55 +190,55 @@ flash:
|
||||||
- software/flash/**
|
- software/flash/**
|
||||||
- tests/software/flash/**
|
- tests/software/flash/**
|
||||||
|
|
||||||
gatk4_applybqsr:
|
gatk4/applybqsr:
|
||||||
- software/gatk4/applybqsr/**
|
- software/gatk4/applybqsr/**
|
||||||
- tests/software/gatk4/applybqsr/**
|
- tests/software/gatk4/applybqsr/**
|
||||||
|
|
||||||
gatk4_baserecalibrator:
|
gatk4/baserecalibrator:
|
||||||
- software/gatk4/baserecalibrator/**
|
- software/gatk4/baserecalibrator/**
|
||||||
- tests/software/gatk4/baserecalibrator/**
|
- tests/software/gatk4/baserecalibrator/**
|
||||||
|
|
||||||
gatk4_bedtointervallist:
|
gatk4/bedtointervallist:
|
||||||
- software/gatk4/bedtointervallist/**
|
- software/gatk4/bedtointervallist/**
|
||||||
- tests/software/gatk4/bedtointervallist/**
|
- tests/software/gatk4/bedtointervallist/**
|
||||||
|
|
||||||
gatk4_createsequencedictionary:
|
gatk4/createsequencedictionary:
|
||||||
- software/gatk4/createsequencedictionary/**
|
- software/gatk4/createsequencedictionary/**
|
||||||
- tests/software/gatk4/createsequencedictionary/**
|
- tests/software/gatk4/createsequencedictionary/**
|
||||||
|
|
||||||
gatk4_fastqtosam:
|
gatk4/fastqtosam:
|
||||||
- software/gatk4/fastqtosam/**
|
- software/gatk4/fastqtosam/**
|
||||||
- tests/software/gatk4/fastqtosam/**
|
- tests/software/gatk4/fastqtosam/**
|
||||||
|
|
||||||
gatk4_haplotypecaller:
|
gatk4/haplotypecaller:
|
||||||
- software/gatk4/haplotypecaller/**
|
- software/gatk4/haplotypecaller/**
|
||||||
- tests/software/gatk4/haplotypecaller/**
|
- tests/software/gatk4/haplotypecaller/**
|
||||||
|
|
||||||
gatk4_markduplicates:
|
gatk4/markduplicates:
|
||||||
- software/gatk4/markduplicates/**
|
- software/gatk4/markduplicates/**
|
||||||
- tests/software/gatk4/markduplicates/**
|
- tests/software/gatk4/markduplicates/**
|
||||||
|
|
||||||
gatk4_mergebamalignment:
|
gatk4/mergebamalignment:
|
||||||
- software/gatk4/mergebamalignment/**
|
- software/gatk4/mergebamalignment/**
|
||||||
- tests/software/gatk4/mergebamalignment/**
|
- tests/software/gatk4/mergebamalignment/**
|
||||||
|
|
||||||
gatk4_mergevcfs:
|
gatk4/mergevcfs:
|
||||||
- software/gatk4/mergevcfs/**
|
- software/gatk4/mergevcfs/**
|
||||||
- tests/software/gatk4/mergevcfs/**
|
- tests/software/gatk4/mergevcfs/**
|
||||||
|
|
||||||
gatk4_revertsam:
|
gatk4/revertsam:
|
||||||
- software/gatk4/revertsam/**
|
- software/gatk4/revertsam/**
|
||||||
- tests/software/gatk4/revertsam/**
|
- tests/software/gatk4/revertsam/**
|
||||||
|
|
||||||
gatk4_samtofastq:
|
gatk4/samtofastq:
|
||||||
- software/gatk4/samtofastq/**
|
- software/gatk4/samtofastq/**
|
||||||
- tests/software/gatk4/samtofastq/**
|
- tests/software/gatk4/samtofastq/**
|
||||||
|
|
||||||
gatk4_splitncigarreads:
|
gatk4/splitncigarreads:
|
||||||
- software/gatk4/splitncigarreads/**
|
- software/gatk4/splitncigarreads/**
|
||||||
- tests/software/gatk4/splitncigarreads/**
|
- tests/software/gatk4/splitncigarreads/**
|
||||||
|
|
||||||
gatk4_variantfiltration:
|
gatk4/variantfiltration:
|
||||||
- software/gatk4/variantfiltration/**
|
- software/gatk4/variantfiltration/**
|
||||||
- tests/software/gatk4/variantfiltration/**
|
- tests/software/gatk4/variantfiltration/**
|
||||||
|
|
||||||
|
@ -254,50 +254,50 @@ gunzip:
|
||||||
- software/gunzip/**
|
- software/gunzip/**
|
||||||
- tests/software/gunzip/**
|
- tests/software/gunzip/**
|
||||||
|
|
||||||
hisat2_align:
|
hisat2/align:
|
||||||
- software/hisat2/align/**
|
- software/hisat2/align/**
|
||||||
- software/hisat2/build/**
|
- software/hisat2/build/**
|
||||||
- software/hisat2/extractsplicesites/**
|
- software/hisat2/extractsplicesites/**
|
||||||
- tests/software/hisat2/align/**
|
- tests/software/hisat2/align/**
|
||||||
|
|
||||||
hisat2_build:
|
hisat2/build:
|
||||||
- software/hisat2/build/**
|
- software/hisat2/build/**
|
||||||
- software/hisat2/extractsplicesites/**
|
- software/hisat2/extractsplicesites/**
|
||||||
- tests/software/hisat2/build_test/**
|
- tests/software/hisat2/build_test/**
|
||||||
|
|
||||||
hisat2_extractsplicesites:
|
hisat2/extractsplicesites:
|
||||||
- software/hisat2/extractsplicesites/**
|
- software/hisat2/extractsplicesites/**
|
||||||
- tests/software/hisat2/extractsplicesites/**
|
- tests/software/hisat2/extractsplicesites/**
|
||||||
|
|
||||||
homer_annotatepeaks:
|
homer/annotatepeaks:
|
||||||
- software/homer/annotatepeaks/**
|
- software/homer/annotatepeaks/**
|
||||||
- tests/software/homer/annotatepeaks/**
|
- tests/software/homer/annotatepeaks/**
|
||||||
|
|
||||||
ivar_consensus:
|
ivar/consensus:
|
||||||
- software/ivar/consensus/**
|
- software/ivar/consensus/**
|
||||||
- tests/software/ivar/consensus/**
|
- tests/software/ivar/consensus/**
|
||||||
|
|
||||||
ivar_trim:
|
ivar/trim:
|
||||||
- software/ivar/trim/**
|
- software/ivar/trim/**
|
||||||
- tests/software/ivar/trim/**
|
- tests/software/ivar/trim/**
|
||||||
|
|
||||||
ivar_variants:
|
ivar/variants:
|
||||||
- software/ivar/variants/**
|
- software/ivar/variants/**
|
||||||
- tests/software/ivar/variants/**
|
- tests/software/ivar/variants/**
|
||||||
|
|
||||||
kallisto_index:
|
kallisto/index:
|
||||||
- software/kallisto/index/**
|
- software/kallisto/index/**
|
||||||
- tests/software/kallisto/index/**
|
- tests/software/kallisto/index/**
|
||||||
|
|
||||||
kraken2_run:
|
kraken2/run:
|
||||||
- software/kraken2/run/**
|
- software/kraken2/run/**
|
||||||
- tests/software/kraken2/run/**
|
- tests/software/kraken2/run/**
|
||||||
|
|
||||||
methyldackel_extract:
|
methyldackel/extract:
|
||||||
- software/methyldackel/extract/**
|
- software/methyldackel/extract/**
|
||||||
- tests/software/methyldackel/extract/**
|
- tests/software/methyldackel/extract/**
|
||||||
|
|
||||||
methyldackel_mbias:
|
methyldackel/mbias:
|
||||||
- software/methyldackel/mbias/**
|
- software/methyldackel/mbias/**
|
||||||
- tests/software/methyldackel/mbias/**
|
- tests/software/methyldackel/mbias/**
|
||||||
|
|
||||||
|
@ -305,7 +305,7 @@ minia:
|
||||||
- software/minia/**
|
- software/minia/**
|
||||||
- tests/software/minia/**
|
- tests/software/minia/**
|
||||||
|
|
||||||
minimap2_align:
|
minimap2/align:
|
||||||
- software/minimap2/align/**
|
- software/minimap2/align/**
|
||||||
- tests/software/minimap2/align/**
|
- tests/software/minimap2/align/**
|
||||||
|
|
||||||
|
@ -334,23 +334,23 @@ pangolin:
|
||||||
- software/pangolin/**
|
- software/pangolin/**
|
||||||
- tests/software/pangolin/**
|
- tests/software/pangolin/**
|
||||||
|
|
||||||
picard_collectmultiplemetrics:
|
picard/collectmultiplemetrics:
|
||||||
- software/picard/collectmultiplemetrics/**
|
- software/picard/collectmultiplemetrics/**
|
||||||
- tests/software/picard/collectmultiplemetrics/**
|
- tests/software/picard/collectmultiplemetrics/**
|
||||||
|
|
||||||
picard_collectwgsmetrics:
|
picard/collectwgsmetrics:
|
||||||
- software/picard/collectwgsmetrics/**
|
- software/picard/collectwgsmetrics/**
|
||||||
- tests/software/picard/collectwgsmetrics/**
|
- tests/software/picard/collectwgsmetrics/**
|
||||||
|
|
||||||
picard_markduplicates:
|
picard/markduplicates:
|
||||||
- software/picard/markduplicates/**
|
- software/picard/markduplicates/**
|
||||||
- tests/software/picard/markduplicates/**
|
- tests/software/picard/markduplicates/**
|
||||||
|
|
||||||
picard_mergesamfiles:
|
picard/mergesamfiles:
|
||||||
- software/picard/mergesamfiles/**
|
- software/picard/mergesamfiles/**
|
||||||
- tests/software/picard/mergesamfiles/**
|
- tests/software/picard/mergesamfiles/**
|
||||||
|
|
||||||
preseq_lcextrap:
|
preseq/lcextrap:
|
||||||
- software/preseq/lcextrap/**
|
- software/preseq/lcextrap/**
|
||||||
- tests/software/preseq/lcextrap/**
|
- tests/software/preseq/lcextrap/**
|
||||||
|
|
||||||
|
@ -362,7 +362,7 @@ prokka:
|
||||||
- software/prokka/**
|
- software/prokka/**
|
||||||
- tests/software/prokka/**
|
- tests/software/prokka/**
|
||||||
|
|
||||||
qualimap_bamqc:
|
qualimap/bamqc:
|
||||||
- software/qualimap/bamqc/**
|
- software/qualimap/bamqc/**
|
||||||
- tests/software/qualimap/bamqc/**
|
- tests/software/qualimap/bamqc/**
|
||||||
|
|
||||||
|
@ -370,79 +370,79 @@ quast:
|
||||||
- software/quast/**
|
- software/quast/**
|
||||||
- tests/software/quast/**
|
- tests/software/quast/**
|
||||||
|
|
||||||
salmon_index:
|
salmon/index:
|
||||||
- software/salmon/index/**
|
- software/salmon/index/**
|
||||||
- tests/software/salmon/index/**
|
- tests/software/salmon/index/**
|
||||||
|
|
||||||
salmon_quant:
|
salmon/quant:
|
||||||
- software/salmon/quant/**
|
- software/salmon/quant/**
|
||||||
- tests/software/salmon/quant/**
|
- tests/software/salmon/quant/**
|
||||||
|
|
||||||
samtools_faidx:
|
samtools/faidx:
|
||||||
- software/samtools/faidx/**
|
- software/samtools/faidx/**
|
||||||
- tests/software/samtools/faidx/**
|
- tests/software/samtools/faidx/**
|
||||||
|
|
||||||
samtools_fastq:
|
samtools/fastq:
|
||||||
- software/samtools/fastq/**
|
- software/samtools/fastq/**
|
||||||
- tests/software/samtools/fastq/**
|
- tests/software/samtools/fastq/**
|
||||||
|
|
||||||
samtools_flagstat:
|
samtools/flagstat:
|
||||||
- software/samtools/flagstat/**
|
- software/samtools/flagstat/**
|
||||||
- tests/software/samtools/flagstat/**
|
- tests/software/samtools/flagstat/**
|
||||||
|
|
||||||
samtools_idxstats:
|
samtools/idxstats:
|
||||||
- software/samtools/idxstats/**
|
- software/samtools/idxstats/**
|
||||||
- tests/software/samtools/idxstats/**
|
- tests/software/samtools/idxstats/**
|
||||||
|
|
||||||
samtools_index:
|
samtools/index:
|
||||||
- software/samtools/index/**
|
- software/samtools/index/**
|
||||||
- tests/software/samtools/index/**
|
- tests/software/samtools/index/**
|
||||||
|
|
||||||
samtools_merge:
|
samtools/merge:
|
||||||
- software/samtools/merge/**
|
- software/samtools/merge/**
|
||||||
- tests/software/samtools/merge/**
|
- tests/software/samtools/merge/**
|
||||||
|
|
||||||
samtools_mpileup:
|
samtools/mpileup:
|
||||||
- software/samtools/mpileup/**
|
- software/samtools/mpileup/**
|
||||||
- tests/software/samtools/mpileup/**
|
- tests/software/samtools/mpileup/**
|
||||||
|
|
||||||
samtools_sort:
|
samtools/sort:
|
||||||
- software/samtools/sort/**
|
- software/samtools/sort/**
|
||||||
- tests/software/samtools/sort/**
|
- tests/software/samtools/sort/**
|
||||||
|
|
||||||
samtools_stats:
|
samtools/stats:
|
||||||
- software/samtools/stats/**
|
- software/samtools/stats/**
|
||||||
- tests/software/samtools/stats/**
|
- tests/software/samtools/stats/**
|
||||||
|
|
||||||
samtools_view:
|
samtools/view:
|
||||||
- software/samtools/view/**
|
- software/samtools/view/**
|
||||||
- tests/software/samtools/view/**
|
- tests/software/samtools/view/**
|
||||||
|
|
||||||
seacr_callpeak:
|
seacr/callpeak:
|
||||||
- software/seacr/callpeak/**
|
- software/seacr/callpeak/**
|
||||||
- tests/software/seacr/callpeak/**
|
- tests/software/seacr/callpeak/**
|
||||||
|
|
||||||
seqkit_split2:
|
seqkit/split2:
|
||||||
- software/seqkit/split2/**
|
- software/seqkit/split2/**
|
||||||
- tests/software/seqkit/split2/**
|
- tests/software/seqkit/split2/**
|
||||||
|
|
||||||
sequenza_bam2seqz:
|
sequenza/bam2seqz:
|
||||||
- software/sequenza/bam2seqz/**
|
- software/sequenza/bam2seqz/**
|
||||||
- tests/software/sequenza/bam2seqz/**
|
- tests/software/sequenza/bam2seqz/**
|
||||||
|
|
||||||
sequenza_wiggle:
|
sequenza/wiggle:
|
||||||
- software/sequenza/wiggle/**
|
- software/sequenza/wiggle/**
|
||||||
- tests/software/sequenza/wiggle/**
|
- tests/software/sequenza/wiggle/**
|
||||||
|
|
||||||
sequenzautils_bam2seqz:
|
sequenzautils/bam2seqz:
|
||||||
- software/sequenzautils/bam2seqz/**
|
- software/sequenzautils/bam2seqz/**
|
||||||
- tests/software/sequenzautils/bam2seqz/**
|
- tests/software/sequenzautils/bam2seqz/**
|
||||||
|
|
||||||
sequenzautils_gcwiggle:
|
sequenzautils/gcwiggle:
|
||||||
- software/sequenzautils/gcwiggle/**
|
- software/sequenzautils/gcwiggle/**
|
||||||
- tests/software/sequenzautils/gcwiggle/**
|
- tests/software/sequenzautils/gcwiggle/**
|
||||||
|
|
||||||
seqwish_induce:
|
seqwish/induce:
|
||||||
- software/seqwish/induce/**
|
- software/seqwish/induce/**
|
||||||
- tests/software/seqwish/induce/**
|
- tests/software/seqwish/induce/**
|
||||||
|
|
||||||
|
@ -454,15 +454,15 @@ spades:
|
||||||
- software/spades/**
|
- software/spades/**
|
||||||
- tests/software/spades/**
|
- tests/software/spades/**
|
||||||
|
|
||||||
star_align:
|
star/align:
|
||||||
- software/star/align/**
|
- software/star/align/**
|
||||||
- tests/software/star/align/**
|
- tests/software/star/align/**
|
||||||
|
|
||||||
star_genomegenerate:
|
star/genomegenerate:
|
||||||
- software/star/genomegenerate/**
|
- software/star/genomegenerate/**
|
||||||
- tests/software/star/genomegenerate/**
|
- tests/software/star/genomegenerate/**
|
||||||
|
|
||||||
strelka_germline:
|
strelka/germline:
|
||||||
- software/strelka/germline/**
|
- software/strelka/germline/**
|
||||||
- tests/software/strelka/germline/**
|
- tests/software/strelka/germline/**
|
||||||
|
|
||||||
|
@ -470,19 +470,19 @@ stringtie:
|
||||||
- software/stringtie/**
|
- software/stringtie/**
|
||||||
- tests/software/stringtie/**
|
- tests/software/stringtie/**
|
||||||
|
|
||||||
subread_featurecounts:
|
subread/featurecounts:
|
||||||
- software/subread/featurecounts/**
|
- software/subread/featurecounts/**
|
||||||
- tests/software/subread/featurecounts/**
|
- tests/software/subread/featurecounts/**
|
||||||
|
|
||||||
tabix_bgzip:
|
tabix/bgzip:
|
||||||
- software/tabix/bgzip/**
|
- software/tabix/bgzip/**
|
||||||
- tests/software/tabix/bgzip/**
|
- tests/software/tabix/bgzip/**
|
||||||
|
|
||||||
tabix_tabix:
|
tabix/tabix:
|
||||||
- software/tabix/tabix/**
|
- software/tabix/tabix/**
|
||||||
- tests/software/tabix/tabix/**
|
- tests/software/tabix/tabix/**
|
||||||
|
|
||||||
tiddit_sv:
|
tiddit/sv:
|
||||||
- software/tiddit/sv/**
|
- software/tiddit/sv/**
|
||||||
- tests/software/tiddit/sv/**
|
- tests/software/tiddit/sv/**
|
||||||
|
|
||||||
|
@ -490,11 +490,11 @@ trimgalore:
|
||||||
- software/trimgalore/**
|
- software/trimgalore/**
|
||||||
- tests/software/trimgalore/**
|
- tests/software/trimgalore/**
|
||||||
|
|
||||||
ucsc_bed12tobigbed:
|
ucsc/bed12tobigbed:
|
||||||
- software/ucsc/bed12tobigbed/**
|
- software/ucsc/bed12tobigbed/**
|
||||||
- tests/software/ucsc/bed12tobigbed/**
|
- tests/software/ucsc/bed12tobigbed/**
|
||||||
|
|
||||||
ucsc_bedgraphtobigwig:
|
ucsc/bedgraphtobigwig:
|
||||||
- software/ucsc/bedgraphtobigwig/**
|
- software/ucsc/bedgraphtobigwig/**
|
||||||
- tests/software/ucsc/bedgraphtobigwig/**
|
- tests/software/ucsc/bedgraphtobigwig/**
|
||||||
|
|
||||||
|
@ -514,6 +514,6 @@ yara:
|
||||||
- software/yara/mapper/**
|
- software/yara/mapper/**
|
||||||
- tests/software/yara/mapper/**
|
- tests/software/yara/mapper/**
|
||||||
|
|
||||||
yara_index:
|
yara/index:
|
||||||
- software/yara/index/**
|
- software/yara/index/**
|
||||||
- tests/software/yara/index/**
|
- tests/software/yara/index/**
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bandage/image -entry test_bandage_image -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bandage/image -entry test_bandage_image -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bandage
|
- bandage
|
||||||
- bandage_image
|
- bandage/image
|
||||||
files:
|
files:
|
||||||
- path: output/bandage/B-3106.png
|
- path: output/bandage/B-3106.png
|
||||||
- path: output/bandage/B-3106.svg
|
- path: output/bandage/B-3106.svg
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: bcftools consensus test_bcftools_consensus
|
- name: bcftools consensus test_bcftools_consensus
|
||||||
command: nextflow run tests/software/bcftools/consensus -entry test_bcftools_consensus -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/consensus -entry test_bcftools_consensus -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools_consensus
|
- bcftools/consensus
|
||||||
- bcftools
|
- bcftools
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test.fa
|
- path: output/bcftools/test.fa
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: bcftools filter test_bcftools_filter
|
- name: bcftools filter test_bcftools_filter
|
||||||
command: nextflow run tests/software/bcftools/filter -entry test_bcftools_filter -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/filter -entry test_bcftools_filter -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools_filter
|
- bcftools/filter
|
||||||
- bcftools
|
- bcftools
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test.vcf.gz
|
- path: output/bcftools/test.vcf.gz
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/bcftools/isec -entry test_bcftools_isec -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/isec -entry test_bcftools_isec -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools
|
- bcftools
|
||||||
- bcftools_isec
|
- bcftools/isec
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test/0000.vcf.gz
|
- path: output/bcftools/test/0000.vcf.gz
|
||||||
md5sum: fc178eb342a91dc0d1d568601ad8f8e2
|
md5sum: fc178eb342a91dc0d1d568601ad8f8e2
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: bcftools merge test_bcftools_merge
|
- name: bcftools merge test_bcftools_merge
|
||||||
command: nextflow run tests/software/bcftools/merge -entry test_bcftools_merge -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/merge -entry test_bcftools_merge -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools_merge
|
- bcftools/merge
|
||||||
- bcftools
|
- bcftools
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test.vcf.gz
|
- path: output/bcftools/test.vcf.gz
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: bcftools mpileup test_bcftools_mpileup
|
- name: bcftools mpileup test_bcftools_mpileup
|
||||||
command: nextflow run tests/software/bcftools/mpileup -entry test_bcftools_mpileup -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/mpileup -entry test_bcftools_mpileup -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools_mpileup
|
- bcftools/mpileup
|
||||||
- bcftools
|
- bcftools
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test.bcftools_stats.txt
|
- path: output/bcftools/test.bcftools_stats.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/bcftools/stats -entry test_bcftools_stats -c tests/config/nextflow.config
|
command: nextflow run tests/software/bcftools/stats -entry test_bcftools_stats -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools
|
- bcftools
|
||||||
- bcftools_stats
|
- bcftools/stats
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test.bcftools_stats.txt
|
- path: output/bcftools/test.bcftools_stats.txt
|
||||||
md5sum: c4c5938add12a20050eec3782c8ad623
|
md5sum: c4c5938add12a20050eec3782c8ad623
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/complement -entry test_bedtools_complement -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/complement -entry test_bedtools_complement -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_complement
|
- bedtools/complement
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: d71df7e47aec0661c27b71e483e727f9
|
md5sum: d71df7e47aec0661c27b71e483e727f9
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/genomecov -entry test_bedtools_genomecov -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/genomecov -entry test_bedtools_genomecov -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_genomecov
|
- bedtools/genomecov
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: 66083198daca6c001d328ba9616e9b53
|
md5sum: 66083198daca6c001d328ba9616e9b53
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/getfasta -entry test_bedtools_getfasta -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/getfasta -entry test_bedtools_getfasta -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_getfasta
|
- bedtools/getfasta
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test.fa
|
- path: ./output/bedtools/test.fa
|
||||||
md5sum: 41c3a45a57a16c04f828d8f8bb52df70
|
md5sum: 41c3a45a57a16c04f828d8f8bb52df70
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/intersect -entry test_bedtools_intersect -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/intersect -entry test_bedtools_intersect -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_intersect
|
- bedtools/intersect
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/maskfasta -entry test_bedtools_maskfasta -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/maskfasta -entry test_bedtools_maskfasta -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_maskfasta
|
- bedtools/maskfasta
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test.fa
|
- path: ./output/bedtools/test.fa
|
||||||
md5sum: f4f6749698f11074228d2c79338e3b9c
|
md5sum: f4f6749698f11074228d2c79338e3b9c
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/merge -entry test_bedtools_merge -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/merge -entry test_bedtools_merge -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_merge
|
- bedtools/merge
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: 0cf6ed2b6f470cd44a247da74ca4fe4e
|
md5sum: 0cf6ed2b6f470cd44a247da74ca4fe4e
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/slop -entry test_bedtools_slop -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/slop -entry test_bedtools_slop -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_slop
|
- bedtools/slop
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: 4f1d8924925fe5d205c9e1981fe290a4
|
md5sum: 4f1d8924925fe5d205c9e1981fe290a4
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bedtools/sort -entry test_bedtools_sort -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bedtools/sort -entry test_bedtools_sort -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bedtools
|
- bedtools
|
||||||
- bedtools_sort
|
- bedtools/sort
|
||||||
files:
|
files:
|
||||||
- path: ./output/bedtools/test_out.bed
|
- path: ./output/bedtools/test_out.bed
|
||||||
md5sum: fe4053cf4de3aebbdfc3be2efb125a74
|
md5sum: fe4053cf4de3aebbdfc3be2efb125a74
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/align -entry test_bismark_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/align -entry test_bismark_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_align
|
- bismark/align
|
||||||
files:
|
files:
|
||||||
- path: output/test_single_end/test_methylated_1_bismark_bt2.bam
|
- path: output/test_single_end/test_methylated_1_bismark_bt2.bam
|
||||||
md5sum: 7f9744cec5aa7908675e5fae79af36fc
|
md5sum: 7f9744cec5aa7908675e5fae79af36fc
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/align -entry test_bismark_align_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/align -entry test_bismark_align_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_align
|
- bismark/align
|
||||||
files:
|
files:
|
||||||
- path: output/test_paired_end/test_methylated_1_bismark_bt2_pe.bam
|
- path: output/test_paired_end/test_methylated_1_bismark_bt2_pe.bam
|
||||||
md5sum: b13d0d40dffd336375f80fc94acc295f
|
md5sum: b13d0d40dffd336375f80fc94acc295f
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/deduplicate -entry test_bismark_deduplicate -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/deduplicate -entry test_bismark_deduplicate -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_deduplicate
|
- bismark/deduplicate
|
||||||
files:
|
files:
|
||||||
- path: output/bismark/test_methylated_paired_end.deduplicated.bam
|
- path: output/bismark/test_methylated_paired_end.deduplicated.bam
|
||||||
- path: output/bismark/test_methylated_paired_end.deduplication_report.txt
|
- path: output/bismark/test_methylated_paired_end.deduplication_report.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/genomepreparation -entry test_bismark_genomepreparation -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/genomepreparation -entry test_bismark_genomepreparation -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_genomepreparation
|
- bismark/genomepreparation
|
||||||
files:
|
files:
|
||||||
- path: ./output/bismark/BismarkIndex/genome.fasta
|
- path: ./output/bismark/BismarkIndex/genome.fasta
|
||||||
md5sum: 6e9fe4042a72f2345f644f239272b7e6
|
md5sum: 6e9fe4042a72f2345f644f239272b7e6
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/methylationextractor -entry test_bismark_methylationextractor -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/methylationextractor -entry test_bismark_methylationextractor -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_methylationextractor
|
- bismark/methylationextractor
|
||||||
files:
|
files:
|
||||||
- path: output/bismark/CHG_OB_test_methylated_paired_end.txt.gz
|
- path: output/bismark/CHG_OB_test_methylated_paired_end.txt.gz
|
||||||
- path: output/bismark/CHG_OT_test_methylated_paired_end.txt.gz
|
- path: output/bismark/CHG_OT_test_methylated_paired_end.txt.gz
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/report -entry test_bismark_report -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/report -entry test_bismark_report -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_report
|
- bismark/report
|
||||||
files:
|
files:
|
||||||
- path: output/bismark/test_methylated_1_bismark_bt2_PE_report.txt
|
- path: output/bismark/test_methylated_1_bismark_bt2_PE_report.txt
|
||||||
- path: output/bismark/test_methylated_1_bismark_bt2_PE_report.html
|
- path: output/bismark/test_methylated_1_bismark_bt2_PE_report.html
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bismark/summary -entry test_bismark_summary -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bismark/summary -entry test_bismark_summary -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bismark
|
- bismark
|
||||||
- bismark_summary
|
- bismark/summary
|
||||||
files:
|
files:
|
||||||
- path: output/bismark/bismark_summary_report.html
|
- path: output/bismark/bismark_summary_report.html
|
||||||
- path: output/bismark/bismark_summary_report.txt
|
- path: output/bismark/bismark_summary_report.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/blast/blastn -entry test_blast_blastn -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/blast/blastn -entry test_blast_blastn -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- blast
|
- blast
|
||||||
- blast_blastn
|
- blast/blastn
|
||||||
files:
|
files:
|
||||||
- path: ./output/blast/test.blastn.txt
|
- path: ./output/blast/test.blastn.txt
|
||||||
- path: ./output/blast/blast_db/genome.fasta.nsq
|
- path: ./output/blast/blast_db/genome.fasta.nsq
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/blast/makeblastdb -entry test_blast_makeblastdb -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/blast/makeblastdb -entry test_blast_makeblastdb -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- blast
|
- blast
|
||||||
- blast_makeblastdb
|
- blast/makeblastdb
|
||||||
files:
|
files:
|
||||||
- path: ./output/blast/blast_db/genome.fasta.nsq
|
- path: ./output/blast/blast_db/genome.fasta.nsq
|
||||||
md5sum: 982cbc7d9e38743b9b1037588862b9da
|
md5sum: 982cbc7d9e38743b9b1037588862b9da
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie/align -entry test_bowtie_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie/align -entry test_bowtie_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie
|
- bowtie
|
||||||
- bowtie_align
|
- bowtie/align
|
||||||
- bowtie_align_single_end
|
- bowtie_align_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bowtie/test.bam
|
- path: ./output/bowtie/test.bam
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie/align -entry test_bowtie_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie/align -entry test_bowtie_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie
|
- bowtie
|
||||||
- bowtie_align
|
- bowtie/align
|
||||||
- bowtie_align_paired_end
|
- bowtie_align_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bowtie/test.bam
|
- path: ./output/bowtie/test.bam
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie/build_test -entry test_bowtie_build -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie/build_test -entry test_bowtie_build -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie
|
- bowtie
|
||||||
- bowtie_build
|
- bowtie/build
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/bowtie/test_genome.3.ebwt
|
- path: ./output/index/bowtie/test_genome.3.ebwt
|
||||||
md5sum: 4ed93abba181d8dfab2e303e33114777
|
md5sum: 4ed93abba181d8dfab2e303e33114777
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie2/align -entry test_bowtie2_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie2/align -entry test_bowtie2_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie2
|
- bowtie2
|
||||||
- bowtie2_align
|
- bowtie2/align
|
||||||
- bowtie2_align_single_end
|
- bowtie2_align_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bowtie2/test.bam
|
- path: ./output/bowtie2/test.bam
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie2/align -entry test_bowtie2_align_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie2/align -entry test_bowtie2_align_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie2
|
- bowtie2
|
||||||
- bowtie2_align
|
- bowtie2/align
|
||||||
- bowtie2_align_paired_end
|
- bowtie2_align_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bowtie2/test.bam
|
- path: ./output/bowtie2/test.bam
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bowtie2/build_test -entry test_bowtie2_build -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bowtie2/build_test -entry test_bowtie2_build -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bowtie2
|
- bowtie2
|
||||||
- bowtie2_build
|
- bowtie2/build
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/bowtie2/genome.3.bt2
|
- path: ./output/index/bowtie2/genome.3.bt2
|
||||||
md5sum: 4ed93abba181d8dfab2e303e33114777
|
md5sum: 4ed93abba181d8dfab2e303e33114777
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwa/index -entry test_bwa_index -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwa/index -entry test_bwa_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwa
|
- bwa
|
||||||
- bwa_index
|
- bwa/index
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/bwa/genome.bwt
|
- path: ./output/index/bwa/genome.bwt
|
||||||
md5sum: 0469c30a1e239dd08f68afe66fde99da
|
md5sum: 0469c30a1e239dd08f68afe66fde99da
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwa/mem -entry test_bwa_mem_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwa/mem -entry test_bwa_mem_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwa
|
- bwa
|
||||||
- bwa_mem
|
- bwa/mem
|
||||||
- bwa_mem_single_end
|
- bwa_mem_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bwa/test.bam
|
- path: ./output/bwa/test.bam
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
command: nextflow run ./tests/software/bwa/mem -entry test_bwa_mem_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwa/mem -entry test_bwa_mem_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwa
|
- bwa
|
||||||
- bwa_mem
|
- bwa/mem
|
||||||
- bwa_mem_paired_end
|
- bwa_mem_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bwa/test.bam
|
- path: ./output/bwa/test.bam
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwamem2/index -entry test_bwamem2_index -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwamem2/index -entry test_bwamem2_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwamem2
|
- bwamem2
|
||||||
- bwamem2_index
|
- bwamem2/index
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/bwamem2/genome.fasta.amb
|
- path: ./output/index/bwamem2/genome.fasta.amb
|
||||||
md5sum: 3a68b8b2287e07dd3f5f95f4344ba76e
|
md5sum: 3a68b8b2287e07dd3f5f95f4344ba76e
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwamem2/mem -entry test_bwamem2_mem_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwamem2/mem -entry test_bwamem2_mem_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwamem2
|
- bwamem2
|
||||||
- bwamem2_mem
|
- bwamem2/mem
|
||||||
- bwamem2_mem_single_end
|
- bwamem2_mem_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bwamem2/test.bam
|
- path: ./output/bwamem2/test.bam
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
command: nextflow run ./tests/software/bwamem2/mem -entry test_bwamem2_mem_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwamem2/mem -entry test_bwamem2_mem_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwamem2
|
- bwamem2
|
||||||
- bwamem2_mem
|
- bwamem2/mem
|
||||||
- bwamem2_mem_paired_end
|
- bwamem2_mem_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/bwamem2/test.bam
|
- path: ./output/bwamem2/test.bam
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwameth/align -entry test_bwameth_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwameth/align -entry test_bwameth_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwameth
|
- bwameth
|
||||||
- bwameth_align
|
- bwameth/align
|
||||||
files:
|
files:
|
||||||
- path: output/test_single_end/test.bam
|
- path: output/test_single_end/test.bam
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
command: nextflow run ./tests/software/bwameth/align -entry test_bwameth_align_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwameth/align -entry test_bwameth_align_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwameth
|
- bwameth
|
||||||
- bwameth_align
|
- bwameth/align
|
||||||
files:
|
files:
|
||||||
- path: output/test_paired_end/test.bam
|
- path: output/test_paired_end/test.bam
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/bwameth/index -entry test_bwameth_index -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/bwameth/index -entry test_bwameth_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bwameth
|
- bwameth
|
||||||
- bwameth_index
|
- bwameth/index
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/bwameth/genome.fasta.bwameth.c2t
|
- path: ./output/index/bwameth/genome.fasta.bwameth.c2t
|
||||||
md5sum: 98039984526a41d04d6bd92fcc040c62
|
md5sum: 98039984526a41d04d6bd92fcc040c62
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/cat/fastq -entry test_cat_fastq_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/cat/fastq -entry test_cat_fastq_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- cat
|
- cat
|
||||||
- cat_fastq
|
- cat/fastq
|
||||||
- cat_fastqc_single_end
|
- cat_fastqc_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/merged_fastq/test.merged.fastq.gz
|
- path: ./output/merged_fastq/test.merged.fastq.gz
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
command: nextflow run ./tests/software/cat/fastq -entry test_cat_fastq_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/cat/fastq -entry test_cat_fastq_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- cat
|
- cat
|
||||||
- cat_fastq
|
- cat/fastq
|
||||||
- cat_fastqc_paired_end
|
- cat_fastqc_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/merged_fastq/test_2.merged.fastq.gz
|
- path: ./output/merged_fastq/test_2.merged.fastq.gz
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/dsh/filterbed -entry test_dsh_filterbed -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/dsh/filterbed -entry test_dsh_filterbed -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- dsh
|
- dsh
|
||||||
- dsh_filterbed
|
- dsh/filterbed
|
||||||
files:
|
files:
|
||||||
- path: ./output/dsh/test.filtered.bed.gz
|
- path: ./output/dsh/test.filtered.bed.gz
|
||||||
md5sum: 163be0a88c70ca629fd516dbaadad96a
|
md5sum: 163be0a88c70ca629fd516dbaadad96a
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/dsh/splitbed -entry test_dsh_splitbed -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/dsh/splitbed -entry test_dsh_splitbed -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- dsh
|
- dsh
|
||||||
- dsh_splitbed
|
- dsh/splitbed
|
||||||
files:
|
files:
|
||||||
- path: ./output/dsh/test.1.bed.gz
|
- path: ./output/dsh/test.1.bed.gz
|
||||||
md5sum: 967ba338f361740eb015304003ababe7
|
md5sum: 967ba338f361740eb015304003ababe7
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
- name: gatk4 applybqsr test_gatk4_applybqsr
|
- name: gatk4 applybqsr test_gatk4_applybqsr
|
||||||
command: nextflow run tests/software/gatk4/applybqsr -entry test_gatk4_applybqsr -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/applybqsr -entry test_gatk4_applybqsr -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_applybqsr
|
|
||||||
- gatk4
|
- gatk4
|
||||||
|
- gatk4/applybqsr
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.bam
|
- path: output/gatk4/test.bam
|
||||||
md5sum: 139a5ffc7601ce3cfa7a896cd381542a
|
md5sum: 139a5ffc7601ce3cfa7a896cd381542a
|
||||||
|
@ -10,9 +10,9 @@
|
||||||
- name: gatk4 applybqsr test_gatk4_applybqsr_intervals
|
- name: gatk4 applybqsr test_gatk4_applybqsr_intervals
|
||||||
command: nextflow run tests/software/gatk4/applybqsr -entry test_gatk4_applybqsr_intervals -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/applybqsr -entry test_gatk4_applybqsr_intervals -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_applybqsr
|
|
||||||
- gatk4_applybqsr_intervals
|
|
||||||
- gatk4
|
- gatk4
|
||||||
|
- gatk4/applybqsr/intervals
|
||||||
|
- gatk4/applybqsr
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.bam
|
- path: output/gatk4/test.bam
|
||||||
md5sum: 5b1f6fa2525124c281f71e5a76d28482
|
md5sum: 5b1f6fa2525124c281f71e5a76d28482
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: gatk4 baserecalibrator test_gatk4_baserecalibrator
|
- name: gatk4 baserecalibrator test_gatk4_baserecalibrator
|
||||||
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_baserecalibrator
|
- gatk4/baserecalibrator
|
||||||
- gatk4
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.table
|
- path: output/gatk4/test.table
|
||||||
|
@ -10,8 +10,8 @@
|
||||||
- name: gatk4 baserecalibrator test_gatk4_baserecalibrator_intervals
|
- name: gatk4 baserecalibrator test_gatk4_baserecalibrator_intervals
|
||||||
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator_intervals -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator_intervals -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_baserecalibrator_intervals
|
- gatk4/baserecalibrator/intervals
|
||||||
- gatk4_baserecalibrator
|
- gatk4/baserecalibrator
|
||||||
- gatk4
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.table
|
- path: output/gatk4/test.table
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator_multiple_sites -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/baserecalibrator -entry test_gatk4_baserecalibrator_multiple_sites -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_baserecalibrator_multiple_sites
|
- gatk4_baserecalibrator_multiple_sites
|
||||||
- gatk4_baserecalibrator
|
- gatk4/baserecalibrator
|
||||||
- gatk4
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.table
|
- path: output/gatk4/test.table
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/gatk4/bedtointervallist -entry test_gatk4_bedtointervallist -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/bedtointervallist -entry test_gatk4_bedtointervallist -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_bedtointervallist
|
- gatk4/bedtointervallist
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.interval_list
|
- path: output/gatk4/test.interval_list
|
||||||
md5sum: e51101c9357fb2d59fd30e370eefa39c
|
md5sum: e51101c9357fb2d59fd30e370eefa39c
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
command: nextflow run tests/software/gatk4/fastqtosam -entry test_gatk4_fastqtosam_single_end -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/fastqtosam -entry test_gatk4_fastqtosam_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_fastqtosam_single_end
|
- gatk4_fastqtosam_single_end
|
||||||
|
- gatk4/fastqtosam
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_fastqtosam
|
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.bam
|
- path: output/gatk4/test.bam
|
||||||
md5sum: 4967100b2e4912c0e4ce0976d946bafb
|
md5sum: 4967100b2e4912c0e4ce0976d946bafb
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
tags:
|
tags:
|
||||||
- gatk4_fastqtosam_paired_end
|
- gatk4_fastqtosam_paired_end
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_fastqtosam
|
- gatk4/fastqtosam
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.bam
|
- path: output/gatk4/test.bam
|
||||||
md5sum: 4967100b2e4912c0e4ce0976d946bafb
|
md5sum: 4967100b2e4912c0e4ce0976d946bafb
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/gatk4/mergebamalignment -entry test_gatk4_mergebamalignment -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/mergebamalignment -entry test_gatk4_mergebamalignment -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_mergebamalignment
|
- gatk4/mergebamalignment
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.merged.bam
|
- path: output/gatk4/test.merged.bam
|
||||||
md5sum: bd4a5e2ea916826aadebb5878333e26f
|
md5sum: bd4a5e2ea916826aadebb5878333e26f
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: gatk4 mergevcfs test_gatk4_mergevcfs
|
- name: gatk4 mergevcfs test_gatk4_mergevcfs
|
||||||
command: nextflow run tests/software/gatk4/mergevcfs -entry test_gatk4_mergevcfs -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/mergevcfs -entry test_gatk4_mergevcfs -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_mergevcfs
|
- gatk4/mergevcfs
|
||||||
- gatk4
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.merged.vcf.gz
|
- path: output/gatk4/test.merged.vcf.gz
|
||||||
|
@ -10,9 +10,9 @@
|
||||||
- name: gatk4 mergevcfs test_gatk4_mergevcfs_refdict
|
- name: gatk4 mergevcfs test_gatk4_mergevcfs_refdict
|
||||||
command: nextflow run tests/software/gatk4/mergevcfs -entry test_gatk4_mergevcfs_refdict -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/mergevcfs -entry test_gatk4_mergevcfs_refdict -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_mergevcfs
|
- gatk4/mergevcfs
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_mergevcfs_refdict
|
- gatk4/mergevcfs_refdict
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.merged.vcf.gz
|
- path: output/gatk4/test.merged.vcf.gz
|
||||||
md5sum: ff48f175e26db2d4b2957762f6d1c715
|
md5sum: ff48f175e26db2d4b2957762f6d1c715
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/gatk4/revertsam -entry test_gatk4_revertsam -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/revertsam -entry test_gatk4_revertsam -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_revertsam
|
- gatk4/revertsam
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.reverted.bam
|
- path: output/gatk4/test.reverted.bam
|
||||||
md5sum: f778310b18b83b49929eb648594f96dc
|
md5sum: f778310b18b83b49929eb648594f96dc
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/gatk4/samtofastq -entry test_gatk4_samtofastq_single_end -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/samtofastq -entry test_gatk4_samtofastq_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_samtofastq
|
- gatk4/samtofastq
|
||||||
- gatk4_samtofastq_single_end
|
- gatk4_samtofastq_single_end
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.fastq.gz
|
- path: output/gatk4/test.fastq.gz
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
command: nextflow run tests/software/gatk4/samtofastq -entry test_gatk4_samtofastq_paired_end -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/samtofastq -entry test_gatk4_samtofastq_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_samtofastq
|
- gatk4/samtofastq
|
||||||
- gatk4_samtofastq_paired_end
|
- gatk4_samtofastq_paired_end
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test_1.fastq.gz
|
- path: output/gatk4/test_1.fastq.gz
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/gatk4/splitncigarreads -entry test_gatk4_splitncigarreads -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/splitncigarreads -entry test_gatk4_splitncigarreads -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_splitncigarreads
|
- gatk4/splitncigarreads
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.split_cigar.bam
|
- path: output/gatk4/test.split_cigar.bam
|
||||||
md5sum: a8473bd4abc7b13751fc51b92531da4c
|
md5sum: a8473bd4abc7b13751fc51b92531da4c
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: gatk4 variantfiltration test_gatk4_variantfiltration
|
- name: gatk4 variantfiltration test_gatk4_variantfiltration
|
||||||
command: nextflow run tests/software/gatk4/variantfiltration -entry test_gatk4_variantfiltration -c tests/config/nextflow.config
|
command: nextflow run tests/software/gatk4/variantfiltration -entry test_gatk4_variantfiltration -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- gatk4_variantfiltration
|
- gatk4/variantfiltration
|
||||||
- gatk4
|
- gatk4
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.filtered.vcf
|
- path: output/gatk4/test.filtered.vcf
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
command: nextflow run tests/software/homer/annotatepeaks -entry test_homer_annotatepeaks -c tests/config/nextflow.config
|
command: nextflow run tests/software/homer/annotatepeaks -entry test_homer_annotatepeaks -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- homer
|
- homer
|
||||||
- homer_annotatepeaks
|
- homer/annotatepeaks
|
||||||
files:
|
files:
|
||||||
- path: output/homer/test.annotatePeaks.txt
|
- path: output/homer/test.annotatePeaks.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/ivar/consensus -entry test_ivar_consensus -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/ivar/consensus -entry test_ivar_consensus -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- ivar
|
- ivar
|
||||||
- ivar_consensus
|
- ivar/consensus
|
||||||
files:
|
files:
|
||||||
- path: output/ivar/test.fa
|
- path: output/ivar/test.fa
|
||||||
md5sum: 9e21a64818f4302b4dece5480fa5e8b8
|
md5sum: 9e21a64818f4302b4dece5480fa5e8b8
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/ivar/trim -entry test_ivar_trim -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/ivar/trim -entry test_ivar_trim -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- ivar
|
- ivar
|
||||||
- ivar_trim
|
- ivar/trim
|
||||||
files:
|
files:
|
||||||
- path: output/ivar/test.bam
|
- path: output/ivar/test.bam
|
||||||
md5sum: 8705d032b28a1c3dbfe78fa762a2132f
|
md5sum: 8705d032b28a1c3dbfe78fa762a2132f
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_no_gff_no_mpileup -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_no_gff_no_mpileup -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- ivar
|
- ivar
|
||||||
- ivar_variants
|
- ivar/variants
|
||||||
files:
|
files:
|
||||||
- path: output/ivar/test.tsv
|
- path: output/ivar/test.tsv
|
||||||
md5sum: 728f1430f2402861396d9953465ac706
|
md5sum: 728f1430f2402861396d9953465ac706
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_no_gff_with_mpileup -c tests/config/nextflow.config --save_mpileup
|
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_no_gff_with_mpileup -c tests/config/nextflow.config --save_mpileup
|
||||||
tags:
|
tags:
|
||||||
- ivar
|
- ivar
|
||||||
- ivar_variants
|
- ivar/variants
|
||||||
files:
|
files:
|
||||||
- path: output/ivar/test.tsv
|
- path: output/ivar/test.tsv
|
||||||
md5sum: 728f1430f2402861396d9953465ac706
|
md5sum: 728f1430f2402861396d9953465ac706
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_with_gff_with_mpileup -c tests/config/nextflow.config --gff tests/data/gff/sarscov2/MN908947.3.gff3 --save_mpileup
|
command: nextflow run ./tests/software/ivar/variants -entry test_ivar_variants_with_gff_with_mpileup -c tests/config/nextflow.config --gff tests/data/gff/sarscov2/MN908947.3.gff3 --save_mpileup
|
||||||
tags:
|
tags:
|
||||||
- ivar
|
- ivar
|
||||||
- ivar_variants
|
- ivar/variants
|
||||||
files:
|
files:
|
||||||
- path: output/ivar/test.tsv
|
- path: output/ivar/test.tsv
|
||||||
md5sum: 7b59146132a60da58444bebffc3c2577
|
md5sum: 7b59146132a60da58444bebffc3c2577
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/kallisto/index -entry test_kallisto_index -c tests/config/nextflow.config
|
command: nextflow run tests/software/kallisto/index -entry test_kallisto_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- kallisto
|
- kallisto
|
||||||
- kallisto_index
|
- kallisto/index
|
||||||
files:
|
files:
|
||||||
- path: output/kallisto/kallisto
|
- path: output/kallisto/kallisto
|
||||||
md5sum: bf8a58d329dddc96f0c32f7823bc0310
|
md5sum: bf8a58d329dddc96f0c32f7823bc0310
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/kraken2/run -entry test_kraken2_run_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/kraken2/run -entry test_kraken2_run_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- kraken2
|
- kraken2
|
||||||
- kraken2_run
|
- kraken2/run
|
||||||
- kraken2_run_single_end
|
- kraken2_run_single_end
|
||||||
files:
|
files:
|
||||||
- path: output/kraken2/test.classified.fastq.gz
|
- path: output/kraken2/test.classified.fastq.gz
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
command: nextflow run ./tests/software/kraken2/run -entry test_kraken2_run_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/kraken2/run -entry test_kraken2_run_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- kraken2
|
- kraken2
|
||||||
- kraken2_run
|
- kraken2/run
|
||||||
- kraken2_run_paired_end
|
- kraken2_run_paired_end
|
||||||
files:
|
files:
|
||||||
- path: output/kraken2/test.classified_1.fastq.gz
|
- path: output/kraken2/test.classified_1.fastq.gz
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/methyldackel/extract -entry test_methyldackel_extract -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/methyldackel/extract -entry test_methyldackel_extract -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- methyldackel
|
- methyldackel
|
||||||
- methyldackel_extract
|
- methyldackel/extract
|
||||||
files:
|
files:
|
||||||
- path: output/methyldackel/test_methylated_paired_end.sorted_CpG.bedGraph
|
- path: output/methyldackel/test_methylated_paired_end.sorted_CpG.bedGraph
|
||||||
md5sum: d7c637e2ef20de401fc610206f6bf6b7
|
md5sum: d7c637e2ef20de401fc610206f6bf6b7
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/methyldackel/mbias -entry test_methyldackel_mbias -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/methyldackel/mbias -entry test_methyldackel_mbias -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- methyldackel
|
- methyldackel
|
||||||
- methyldackel_mbias
|
- methyldackel/mbias
|
||||||
files:
|
files:
|
||||||
- path: output/methyldackel/test.mbias.txt
|
- path: output/methyldackel/test.mbias.txt
|
||||||
md5sum: 357bb944dc2cdffcc47fa0d34376e016
|
md5sum: 357bb944dc2cdffcc47fa0d34376e016
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/minimap2/align -entry test_minimap2_align_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/minimap2/align -entry test_minimap2_align_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- minimap2
|
- minimap2
|
||||||
- minimap2_align
|
- minimap2/align
|
||||||
- minimap2_align_single_end
|
- minimap2_align_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/minimap2/test.paf
|
- path: ./output/minimap2/test.paf
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
command: nextflow run ./tests/software/minimap2/align -entry test_minimap2_align_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/minimap2/align -entry test_minimap2_align_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- minimap2
|
- minimap2
|
||||||
- minimap2_align
|
- minimap2/align
|
||||||
- minimap2_align_paired_end
|
- minimap2_align_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/minimap2/test.paf
|
- path: ./output/minimap2/test.paf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: picard collectwgsmetrics test_picard_collectwgsmetrics
|
- name: picard collectwgsmetrics test_picard_collectwgsmetrics
|
||||||
command: nextflow run tests/software/picard/collectwgsmetrics -entry test_picard_collectwgsmetrics -c tests/config/nextflow.config
|
command: nextflow run tests/software/picard/collectwgsmetrics -entry test_picard_collectwgsmetrics -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- picard_collectwgsmetrics
|
- picard/collectwgsmetrics
|
||||||
- picard
|
- picard
|
||||||
files:
|
files:
|
||||||
- path: output/picard/test.CollectWgsMetrics.coverage_metrics
|
- path: output/picard/test.CollectWgsMetrics.coverage_metrics
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/picard/markduplicates -entry test_picard_markduplicates_sorted_bam -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/picard/markduplicates -entry test_picard_markduplicates_sorted_bam -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- picard
|
- picard
|
||||||
- picard_markduplicates
|
- picard/markduplicates
|
||||||
files:
|
files:
|
||||||
- path: ./output/picard/test.MarkDuplicates.metrics.txt
|
- path: ./output/picard/test.MarkDuplicates.metrics.txt
|
||||||
- path: ./output/picard/test.bam
|
- path: ./output/picard/test.bam
|
||||||
|
@ -12,6 +12,6 @@
|
||||||
command: nextflow run ./tests/software/picard/markduplicates -entry test_picard_markduplicates_unsorted_bam -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/picard/markduplicates -entry test_picard_markduplicates_unsorted_bam -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- picard
|
- picard
|
||||||
- picard_markduplicates
|
- picard/markduplicates
|
||||||
- should fail
|
- should fail
|
||||||
exit_code: 1
|
exit_code: 1
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/picard/mergesamfiles -entry test_picard_mergesamfiles -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/picard/mergesamfiles -entry test_picard_mergesamfiles -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- picard
|
- picard
|
||||||
- picard_mergesamfiles
|
- picard/mergesamfiles
|
||||||
files:
|
files:
|
||||||
- path: ./output/picard/test.bam
|
- path: ./output/picard/test.bam
|
||||||
md5sum: b8bd6c22f36c6ebc91bca98bd637a2eb
|
md5sum: b8bd6c22f36c6ebc91bca98bd637a2eb
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/preseq/lcextrap -entry test_preseq_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/preseq/lcextrap -entry test_preseq_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- preseq
|
- preseq
|
||||||
- preseq_lcextrap
|
- preseq/lcextrap
|
||||||
- preseq_lcextrap_single_end
|
- preseq_lcextrap_single_end
|
||||||
files:
|
files:
|
||||||
- path: output/preseq/test.ccurve.txt
|
- path: output/preseq/test.ccurve.txt
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
command: nextflow run ./tests/software/preseq/lcextrap -entry test_preseq_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/preseq/lcextrap -entry test_preseq_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- preseq
|
- preseq
|
||||||
- preseq_lcextrap
|
- preseq/lcextrap
|
||||||
- preseq_lcextrap_paired_end
|
- preseq_lcextrap_paired_end
|
||||||
files:
|
files:
|
||||||
- path: output/preseq/test.ccurve.txt
|
- path: output/preseq/test.ccurve.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/qualimap/bamqc -entry test_qualimap_bamqc -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/qualimap/bamqc -entry test_qualimap_bamqc -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- qualimap
|
- qualimap
|
||||||
- qualimap_bamqc
|
- qualimap/bamqc
|
||||||
files:
|
files:
|
||||||
- path: ./output/qualimap/test/qualimapReport.html
|
- path: ./output/qualimap/test/qualimapReport.html
|
||||||
- path: ./output/qualimap/test/genome_results.txt
|
- path: ./output/qualimap/test/genome_results.txt
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/salmon/index -entry test_salmon_index -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/salmon/index -entry test_salmon_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- salmon
|
- salmon
|
||||||
- salmon_index
|
- salmon/index
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/salmon/ref_indexing.log
|
- path: ./output/index/salmon/ref_indexing.log
|
||||||
- path: ./output/index/salmon/refseq.bin
|
- path: ./output/index/salmon/refseq.bin
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/salmon/quant -entry test_salmon_quant_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/salmon/quant -entry test_salmon_quant_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- salmon
|
- salmon
|
||||||
- salmon_quant
|
- salmon/quant
|
||||||
- salmon_quant_single_end
|
- salmon_quant_single_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/salmon/test/cmd_info.json
|
- path: ./output/salmon/test/cmd_info.json
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
command: nextflow run ./tests/software/salmon/quant -entry test_salmon_quant_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/salmon/quant -entry test_salmon_quant_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- salmon
|
- salmon
|
||||||
- salmon_quant
|
- salmon/quant
|
||||||
- salmon_quant_paired_end
|
- salmon_quant_paired_end
|
||||||
files:
|
files:
|
||||||
- path: ./output/salmon/test/cmd_info.json
|
- path: ./output/salmon/test/cmd_info.json
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/samtools/faidx -entry test_samtools_faidx -c tests/config/nextflow.config
|
command: nextflow run tests/software/samtools/faidx -entry test_samtools_faidx -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_faidx
|
- samtools/faidx
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/genome.fasta.fai
|
- path: output/samtools/genome.fasta.fai
|
||||||
md5sum: 9da2a56e2853dc8c0b86a9e7229c9fe5
|
md5sum: 9da2a56e2853dc8c0b86a9e7229c9fe5
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/samtools/fastq -entry test_samtools_fastq -c tests/config/nextflow.config
|
command: nextflow run tests/software/samtools/fastq -entry test_samtools_fastq -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_fastq
|
- samtools/fastq
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/test_2.fastq.gz
|
- path: output/samtools/test_2.fastq.gz
|
||||||
md5sum: 229daf1a62d114cae42c65801e8c0114
|
md5sum: 229daf1a62d114cae42c65801e8c0114
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/samtools/flagstat -entry test_samtools_flagstat -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/samtools/flagstat -entry test_samtools_flagstat -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_flagstat
|
- samtools/flagstat
|
||||||
files:
|
files:
|
||||||
- path: ./output/samtools/test_paired_end.sorted.bam.flagstat
|
- path: ./output/samtools/test_paired_end.sorted.bam.flagstat
|
||||||
md5sum: 6d7934c303b15ce473f64d502b79984e
|
md5sum: 6d7934c303b15ce473f64d502b79984e
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/samtools/idxstats -entry test_samtools_idxstats -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/samtools/idxstats -entry test_samtools_idxstats -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_idxstats
|
- samtools/idxstats
|
||||||
files:
|
files:
|
||||||
- path: ./output/samtools/test_paired_end.sorted.bam.idxstats
|
- path: ./output/samtools/test_paired_end.sorted.bam.idxstats
|
||||||
md5sum: df60a8c8d6621100d05178c93fb053a2
|
md5sum: df60a8c8d6621100d05178c93fb053a2
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/samtools/index -entry test_samtools_index -c tests/config/nextflow.config
|
command: nextflow run tests/software/samtools/index -entry test_samtools_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_index
|
- samtools/index
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/test_paired_end.sorted.bam.bai
|
- path: output/samtools/test_paired_end.sorted.bam.bai
|
||||||
md5sum: 704c10dd1326482448ca3073fdebc2f4
|
md5sum: 704c10dd1326482448ca3073fdebc2f4
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
command: nextflow run ./tests/software/samtools/merge -entry test_samtools_merge -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/samtools/merge -entry test_samtools_merge -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_merge
|
- samtools/merge
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/test_merged.bam
|
- path: output/samtools/test_merged.bam
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/samtools/mpileup -entry test_samtools_mpileup -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/samtools/mpileup -entry test_samtools_mpileup -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_mpileup
|
- samtools/mpileup
|
||||||
files:
|
files:
|
||||||
- path: ./output/samtools/test.mpileup
|
- path: ./output/samtools/test.mpileup
|
||||||
md5sum: 56c4cd5a4ecb7d6364878818f46ae256
|
md5sum: 56c4cd5a4ecb7d6364878818f46ae256
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/samtools/sort -entry test_samtools_sort -c tests/config/nextflow.config
|
command: nextflow run tests/software/samtools/sort -entry test_samtools_sort -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_sort
|
- samtools/sort
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/test.bam
|
- path: output/samtools/test.bam
|
||||||
md5sum: 7e32f47768f922a73ccec4dc24db1973
|
md5sum: 7e32f47768f922a73ccec4dc24db1973
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/samtools/stats -entry test_samtools_stats -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/samtools/stats -entry test_samtools_stats -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_stats
|
- samtools/stats
|
||||||
files:
|
files:
|
||||||
- path: ./output/samtools/test_paired_end.sorted.bam.stats
|
- path: ./output/samtools/test_paired_end.sorted.bam.stats
|
||||||
md5sum: 5f12c46ae4491b48611194c94093ebfb
|
md5sum: 5f12c46ae4491b48611194c94093ebfb
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/samtools/view -entry test_samtools_view -c tests/config/nextflow.config
|
command: nextflow run tests/software/samtools/view -entry test_samtools_view -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- samtools
|
- samtools
|
||||||
- samtools_view
|
- samtools/view
|
||||||
files:
|
files:
|
||||||
- path: output/samtools/test.bam
|
- path: output/samtools/test.bam
|
||||||
md5sum: 8fb1e82f76416e9e30fc6b2357e2cf13
|
md5sum: 8fb1e82f76416e9e30fc6b2357e2cf13
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/seacr/callpeak -entry test_seacr_callpeak -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seacr/callpeak -entry test_seacr_callpeak -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seacr
|
- seacr
|
||||||
- seacr_callpeak
|
- seacr/callpeak
|
||||||
files:
|
files:
|
||||||
- path: output/seacr/test_1.stringent.bed
|
- path: output/seacr/test_1.stringent.bed
|
||||||
md5sum: 3ac70475669eb6a7b8ca89e19a08a28e
|
md5sum: 3ac70475669eb6a7b8ca89e19a08a28e
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_length -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_length -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_single_end
|
- seqkit_split2_single_end
|
||||||
- length
|
- length
|
||||||
files:
|
files:
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_size -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_size -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_single_end
|
- seqkit_split2_single_end
|
||||||
- size
|
- size
|
||||||
files:
|
files:
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_part -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_single_end_part -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_single_end
|
- seqkit_split2_single_end
|
||||||
- part
|
- part
|
||||||
files:
|
files:
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_length -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_length -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_paired_end
|
- seqkit_split2_paired_end
|
||||||
- length
|
- length
|
||||||
files:
|
files:
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_size -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_size -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_paired_end
|
- seqkit_split2_paired_end
|
||||||
- size
|
- size
|
||||||
files:
|
files:
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_part -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqkit/split2 -entry test_seqkit_split2_paired_end_part -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqkit
|
- seqkit
|
||||||
- seqkit_split2
|
- seqkit/split2
|
||||||
- seqkit_split2_paired_end
|
- seqkit_split2_paired_end
|
||||||
- part
|
- part
|
||||||
files:
|
files:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/seqwish/induce -entry test_seqwish_induce -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/seqwish/induce -entry test_seqwish_induce -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- seqwish
|
- seqwish
|
||||||
- seqwish_induce
|
- seqwish/induce
|
||||||
files:
|
files:
|
||||||
- path: output/seqwish/test.gfa
|
- path: output/seqwish/test.gfa
|
||||||
md5sum: 216a02d3aca322a457c31a62c628548e
|
md5sum: 216a02d3aca322a457c31a62c628548e
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/shovill -entry test_shovill -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/shovill -entry test_shovill -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- shovill
|
- shovill
|
||||||
- shovill_spades
|
- shovill/spades
|
||||||
files:
|
files:
|
||||||
- path: output/shovill/contigs.gfa
|
- path: output/shovill/contigs.gfa
|
||||||
md5sum: 277af5d8ae8a0d2432db59a316226828
|
md5sum: 277af5d8ae8a0d2432db59a316226828
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
command: nextflow run ./tests/software/shovill -entry test_shovill_megahit -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/shovill -entry test_shovill_megahit -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- shovill
|
- shovill
|
||||||
- shovill_megahit
|
- shovill/megahit
|
||||||
files:
|
files:
|
||||||
- path: output/shovill/shovill.corrections
|
- path: output/shovill/shovill.corrections
|
||||||
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
command: nextflow run ./tests/software/shovill -entry test_shovill_skesa -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/shovill -entry test_shovill_skesa -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- shovill
|
- shovill
|
||||||
- shovill_skesa
|
- shovill/skesa
|
||||||
files:
|
files:
|
||||||
- path: output/shovill/shovill.corrections
|
- path: output/shovill/shovill.corrections
|
||||||
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
md5sum: d41d8cd98f00b204e9800998ecf8427e
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
command: nextflow run ./tests/software/shovill -entry test_shovill_velvet -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/shovill -entry test_shovill_velvet -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- shovill
|
- shovill
|
||||||
- shovill_velvet
|
- shovill/velvet
|
||||||
files:
|
files:
|
||||||
# MD5sum not reproducible (timestamp, contig order)
|
# MD5sum not reproducible (timestamp, contig order)
|
||||||
- path: output/shovill/contigs.fa
|
- path: output/shovill/contigs.fa
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/star/align -entry test_star_alignment_single_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/star/align -entry test_star_alignment_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- star
|
- star
|
||||||
- star_align
|
- star/align
|
||||||
- star_align_single_end
|
- star_align_single_end
|
||||||
files:
|
files:
|
||||||
- path: output/star/star/Genome
|
- path: output/star/star/Genome
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
command: nextflow run ./tests/software/star/align -entry test_star_alignment_paired_end -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/star/align -entry test_star_alignment_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- star
|
- star
|
||||||
- star_align
|
- star/align
|
||||||
- star_align_paired_end
|
- star_align_paired_end
|
||||||
files:
|
files:
|
||||||
- path: output/star/star/Genome
|
- path: output/star/star/Genome
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/star/genomegenerate -entry test_star_genomegenerate -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/star/genomegenerate -entry test_star_genomegenerate -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- star
|
- star
|
||||||
- star_genomegenerate
|
- star/genomegenerate
|
||||||
files:
|
files:
|
||||||
- path: ./output/index/star/Genome
|
- path: ./output/index/star/Genome
|
||||||
md5sum: 323c992bac354f93073ce0fc43f222f8
|
md5sum: 323c992bac354f93073ce0fc43f222f8
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
command: nextflow run ./tests/software/strelka/germline -entry test_strelka_germline -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/strelka/germline -entry test_strelka_germline -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- strelka
|
- strelka
|
||||||
- strelka_germline
|
- strelka/germline
|
||||||
files:
|
files:
|
||||||
- path: output/strelka/strelka_test_variants.vcf.gz
|
- path: output/strelka/strelka_test_variants.vcf.gz
|
||||||
- path: output/strelka/strelka_test_variants.vcf.gz.tbi
|
- path: output/strelka/strelka_test_variants.vcf.gz.tbi
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
command: nextflow run ./tests/software/strelka/germline -entry test_strelka_germline_target_bed -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/strelka/germline -entry test_strelka_germline_target_bed -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- strelka
|
- strelka
|
||||||
- strelka_germline
|
- strelka/germline
|
||||||
files:
|
files:
|
||||||
- path: output/strelka/strelka_test_variants.vcf.gz
|
- path: output/strelka/strelka_test_variants.vcf.gz
|
||||||
- path: output/strelka/strelka_test_variants.vcf.gz.tbi
|
- path: output/strelka/strelka_test_variants.vcf.gz.tbi
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/tabix/bgzip -entry test_tabix_bgzip -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tabix/bgzip -entry test_tabix_bgzip -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tabix
|
- tabix
|
||||||
- tabix_bgzip
|
- tabix/bgzip
|
||||||
files:
|
files:
|
||||||
- path: ./output/tabix/test.vcf.gz
|
- path: ./output/tabix/test.vcf.gz
|
||||||
md5sum: 0f1c94af3aa3e7e203d9e034ef6f8f4d
|
md5sum: 0f1c94af3aa3e7e203d9e034ef6f8f4d
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_bed -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_bed -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tabix
|
- tabix
|
||||||
- tabix_tabix
|
- tabix/tabix
|
||||||
- bed
|
- bed
|
||||||
files:
|
files:
|
||||||
- path: ./output/tabix/test.bed.gz.tbi
|
- path: ./output/tabix/test.bed.gz.tbi
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_gff -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_gff -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tabix
|
- tabix
|
||||||
- tabix_tabix
|
- tabix/tabix
|
||||||
- gff
|
- gff
|
||||||
files:
|
files:
|
||||||
- path: ./output/tabix/genome.gff3.gz.tbi
|
- path: ./output/tabix/genome.gff3.gz.tbi
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_vcf -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tabix/tabix -entry test_tabix_tabix_vcf -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tabix
|
- tabix
|
||||||
- tabix_tabix
|
- tabix/tabix
|
||||||
- vcf
|
- vcf
|
||||||
files:
|
files:
|
||||||
- path: output/tabix/test.vcf.gz.tbi
|
- path: output/tabix/test.vcf.gz.tbi
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run ./tests/software/tiddit/sv -entry test_tiddit_sv -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tiddit/sv -entry test_tiddit_sv -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tiddit
|
- tiddit
|
||||||
- tiddit_sv
|
- tiddit/sv
|
||||||
- vcf
|
- vcf
|
||||||
files:
|
files:
|
||||||
- path: output/tiddit/test.ploidy.tab
|
- path: output/tiddit/test.ploidy.tab
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
command: nextflow run ./tests/software/tiddit/sv -entry test_tiddit_sv_no_ref -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/tiddit/sv -entry test_tiddit_sv_no_ref -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- tiddit
|
- tiddit
|
||||||
- tiddit_sv
|
- tiddit/sv
|
||||||
- vcf
|
- vcf
|
||||||
files:
|
files:
|
||||||
- path: output/tiddit/test.ploidy.tab
|
- path: output/tiddit/test.ploidy.tab
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: ucsc bed12tobigbed
|
- name: ucsc bed12tobigbed
|
||||||
command: nextflow run ./tests/software/ucsc/bed12tobigbed -entry test_ucsc_bed12tobigbed -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/ucsc/bed12tobigbed -entry test_ucsc_bed12tobigbed -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- ucsc_bed12tobigbed
|
- ucsc/bed12tobigbed
|
||||||
files:
|
files:
|
||||||
- path: output/ucsc/test.bigBed
|
- path: output/ucsc/test.bigBed
|
||||||
md5sum: 98cf0d0baa3ae5a330c80afbb8bc2b18
|
md5sum: 98cf0d0baa3ae5a330c80afbb8bc2b18
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: ucsc bedgraphtobigwig
|
- name: ucsc bedgraphtobigwig
|
||||||
command: nextflow run ./tests/software/ucsc/bedgraphtobigwig -entry test_ucsc_bedgraphtobigwig -c tests/config/nextflow.config
|
command: nextflow run ./tests/software/ucsc/bedgraphtobigwig -entry test_ucsc_bedgraphtobigwig -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- ucsc_bedgraphtobigwig
|
- ucsc/bedgraphtobigwig
|
||||||
files:
|
files:
|
||||||
- path: output/ucsc/test.bigWig
|
- path: output/ucsc/test.bigWig
|
||||||
md5sum: 5346de25b01ecbff91b63178b3bfbeec
|
md5sum: 5346de25b01ecbff91b63178b3bfbeec
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- name: yara index test_yara_index
|
- name: yara index test_yara_index
|
||||||
command: nextflow run tests/software/yara/index -entry test_yara_index -c tests/config/nextflow.config
|
command: nextflow run tests/software/yara/index -entry test_yara_index -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- yara_index
|
- yara/index
|
||||||
- yara
|
- yara
|
||||||
files:
|
files:
|
||||||
- path: output/index/yara/yara.rid.limits
|
- path: output/index/yara/yara.rid.limits
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
command: nextflow run tests/software/yara/mapper -entry test_yara_single_end -c tests/config/nextflow.config
|
command: nextflow run tests/software/yara/mapper -entry test_yara_single_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- yara_single_end
|
- yara_single_end
|
||||||
- yara_mapper
|
- yara/mapper
|
||||||
- yara
|
- yara
|
||||||
files:
|
files:
|
||||||
- path: output/yara/test.mapped.bam
|
- path: output/yara/test.mapped.bam
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
- name: yara mapper test_yara_paired_end
|
- name: yara mapper test_yara_paired_end
|
||||||
command: nextflow run tests/software/yara/mapper -entry test_yara_paired_end -c tests/config/nextflow.config
|
command: nextflow run tests/software/yara/mapper -entry test_yara_paired_end -c tests/config/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- yara_mapper
|
- yara/mapper
|
||||||
- yara_paired_end
|
- yara_paired_end
|
||||||
- yara
|
- yara
|
||||||
files:
|
files:
|
||||||
|
|
Loading…
Reference in a new issue