Skip to content

Commit b70d85f

Browse files
committed
update test
1 parent 967dd7d commit b70d85f

2 files changed

Lines changed: 20 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,12 @@ jobs:
8080
run: bash build_containers.sh --docker --github_action
8181

8282
# Run test(s)
83-
- name: test short single
84-
run: nextflow run rain.nf -profile docker,test
83+
- name: test short single list
84+
run: nextflow run rain.nf -profile docker,test_short_single_list
8585

86-
- name: test short paired
87-
run: nextflow run rain.nf -profile docker,test2
86+
- name: test short paired folder
87+
run: nextflow run rain.nf -profile docker,test_short_paired_folder
8888

89+
- name: test csv mix
90+
run: nextflow run rain.nf -profile docker,test_mix_csv
8991

nextflow.config

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,34 @@ profiles {
5858
local {
5959
includeConfig "$baseDir/config/resources/local.config"
6060
}
61-
test {
61+
test_short_single_list {
6262
params.aligner = "STAR"
6363
params.reads = "${baseDir}/data/chr21/chr21_small_R1.fastq.gz,${baseDir}/data/chr21/chr21_small_R2.fastq.gz"
6464
params.genome = "${baseDir}/data/chr21/chr21_small.fasta.gz"
6565
params.annotation = "${baseDir}/data/chr21/chr21_small_filtered.gff3.gz"
6666
params.strandedness = "ISR"
6767
params.read_type = "short_single"
6868
}
69-
test2 {
69+
test_short_paired_folder {
7070
params.aligner = "STAR"
7171
params.reads = "${baseDir}/data/chr21/"
7272
params.genome = "${baseDir}/data/chr21/chr21_small.fasta.gz"
7373
params.annotation = "${baseDir}/data/chr21/chr21_small_filtered.gff3.gz"
7474
params.strandedness = "ISR"
7575
params.read_type = "short_paired"
7676
}
77+
test_short_single_csv {
78+
params.aligner = "STAR"
79+
params.reads = "${baseDir}/data/chr21/chr21_small_single.csv"
80+
params.genome = "${baseDir}/data/chr21/chr21_small.fasta.gz"
81+
params.annotation = "${baseDir}/data/chr21/chr21_small_filtered.gff3.gz"
82+
}
83+
test_mix_csv {
84+
params.aligner = "STAR"
85+
params.reads = "${baseDir}/data/chr21/chr21_small_mix.csv"
86+
params.genome = "${baseDir}/data/chr21/chr21_small.fasta.gz"
87+
params.annotation = "${baseDir}/data/chr21/chr21_small_filtered.gff3.gz"
88+
}
7789
}
7890

7991
resume = true

0 commit comments

Comments
 (0)