Skip to content

Commit

Permalink
test: Add --outdir
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Oct 10, 2022
1 parent 2b9aabb commit 4e7f708
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion tests/test_default.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NOTE For now these tests don't support any containers beside docker
- name: Run default pipeline with test data
command: nextflow run main.nf -profile test,docker
command: nextflow run main.nf -profile test,docker --outdir results
tags:
- default
files:
Expand Down
6 changes: 3 additions & 3 deletions tests/test_hisat2.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# NOTE For now these tests don't support any containers beside docker
- name: Test HISAT2 with skip_qc workflow parameters
command: nextflow run main.nf -profile test,docker --aligner hisat2 --skip_qc
command: nextflow run main.nf -profile test,docker --aligner hisat2 --skip_qc --outdir results
tags:
- hisat2
- skip_qc

- name: Test HISAT2 with hisat2_index false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner hisat2 --hisat2_index false
command: nextflow run main.nf -profile test,docker --aligner hisat2 --hisat2_index false --outdir results
tags:
- hisat2
- "hisat2_index false"
- 'hisat2_index false'
4 changes: 2 additions & 2 deletions tests/test_salmon.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# NOTE For now these tests don't support any containers beside docker
- name: Test Salmon with skip_qc skip_alignment workflow parameters
command: nextflow run main.nf -profile test,docker --pseudo_aligner salmon --skip_qc --skip_alignment
command: nextflow run main.nf -profile test,docker --pseudo_aligner salmon --skip_qc --skip_alignment --outdir results
tags:
- salmon
- skip_qc
- skip_alignment
- "skip_qc skip_alignment"

- name: Test Salmon with salmon_index false transcript_fasta false workflow parameters
command: nextflow run main.nf -profile test,docker --salmon_index false --transcript_fasta false
command: nextflow run main.nf -profile test,docker --salmon_index false --transcript_fasta false --outdir results
tags:
- salmon
- salmon_index
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sra_download.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# NOTE For now these tests don't support any containers beside docker
- name: Run pipeline to download public data
command: nextflow run main.nf -profile test_sra,docker
command: nextflow run main.nf -profile test_sra,docker --outdir results
tags:
- sra_download
4 changes: 2 additions & 2 deletions tests/test_star_rsem.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# NOTE For now these tests don't support any containers beside docker
- name: Test STAR RSEM with skip_qc workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_rsem --skip_qc
command: nextflow run main.nf -profile test,docker --aligner star_rsem --skip_qc --outdir results
tags:
- star
- rsem
- skip_qc

- name: Test STAR RSEM with rsem_index false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_rsem --rsem_index false
command: nextflow run main.nf -profile test,docker --aligner star_rsem --rsem_index false --outdir results
tags:
- star
- rsem
Expand Down
24 changes: 12 additions & 12 deletions tests/test_star_salmon.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# NOTE For now these tests don't support any containers beside docker
- name: Test STAR Salmon with skip_qc workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --skip_qc
command: nextflow run main.nf -profile test,docker --aligner star_salmon --skip_qc --outdir results
tags:
- star
- salmon
- skip_qc

- name: Test STAR Salmon with remove_ribo_rna workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --remove_ribo_rna
command: nextflow run main.nf -profile test,docker --aligner star_salmon --remove_ribo_rna --outdir results
tags:
- star
- salmon
Expand All @@ -16,71 +16,71 @@
exit_code: 1

- name: Test STAR Salmon with skim_trimming workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --skim_trimming
command: nextflow run main.nf -profile test,docker --aligner star_salmon --skim_trimming --outdir results
tags:
- star
- salmon
- skim_trimming

- name: Test STAR Salmon with gtf false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --gtf false
command: nextflow run main.nf -profile test,docker --aligner star_salmon --gtf false --outdir results
tags:
- star
- salmon
- "gtf false"

- name: Test STAR Salmon with star_index false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --star_index false
command: nextflow run main.nf -profile test,docker --aligner star_salmon --star_index false --outdir results
tags:
- star
- salmon
- "star_index false"

- name: Test STAR Salmon with transcript_fasta false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --transcript_fasta false
command: nextflow run main.nf -profile test,docker --aligner star_salmon --transcript_fasta false --outdir results
tags:
- star
- salmon
- "transcript_fasta"

- name: Test STAR Salmon with min_mapped_reads 90 workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --min_mapped_reads 90
command: nextflow run main.nf -profile test,docker --aligner star_salmon --min_mapped_reads 90 --outdir results
tags:
- star
- salmon
- "min_mapped_reads 90"

- name: Test STAR Salmon with with_umi workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --with_umi
command: nextflow run main.nf -profile test,docker --aligner star_salmon --with_umi --outdir results
tags:
- star
- salmon
- with_umi

- name: Test STAR Salmon with with_umi skip_trimming workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --with_umi --skip_trimming
command: nextflow run main.nf -profile test,docker --aligner star_salmon --with_umi --skip_trimming --outdir results
tags:
- star
- salmon
- with_umi
- skip_trimming

- name: Test STAR Salmon with bam_csi_index workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --bam_csi_index
command: nextflow run main.nf -profile test,docker --aligner star_salmon --bam_csi_index --outdir results
tags:
- star
- salmon
- "bam_csi_index"

- name: Test STAR Salmon with save_align_intermeds save_reference workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --save_align_intermeds --save_reference
command: nextflow run main.nf -profile test,docker --aligner star_salmon --save_align_intermeds --save_reference --outdir results
tags:
- star
- salmon
- "save_reference"

- name: Test STAR Salmon with featurecounts_group_type false workflow parameters
command: nextflow run main.nf -profile test,docker --aligner star_salmon --featurecounts_group_type false
command: nextflow run main.nf -profile test,docker --aligner star_salmon --featurecounts_group_type false --outdir results
tags:
- star
- salmon
Expand Down

0 comments on commit 4e7f708

Please sign in to comment.