Skip to content

Commit 3621b5a

Browse files
authored
Merge pull request #3 from tylergross97/seqera-ai/20260220-180341-fix-test-samplesheet-urls
Fix test profile to use GitHub URLs for test data
2 parents 54d8f5c + 0a2277b commit 3621b5a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

nextflow.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ profiles {
4949
}
5050
}
5151
params {
52-
input = "${projectDir}/tests/data/xengsort/samplesheet.csv"
53-
hg38_fasta = "${projectDir}/tests/data/xengsort/human.fa"
54-
nsg_fasta = "${projectDir}/tests/data/xengsort/mouse.fa"
52+
input = "https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/samplesheet.csv"
53+
hg38_fasta = "https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/human.fa"
54+
nsg_fasta = "https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/mouse.fa"
5555
outdir_base = 'results_test'
5656
outdir_references = "results_test/references"
5757
outdir_fastp = "results_test/fastp"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
sample,fastq1,fastq2
2-
human,tests/data/xengsort/human_R1.fastq.gz,tests/data/xengsort/human_R2.fastq.gz
3-
mouse,tests/data/xengsort/mouse_R1.fastq.gz,tests/data/xengsort/mouse_R2.fastq.gz
4-
mixed,tests/data/xengsort/mixed_R1.fastq.gz,tests/data/xengsort/mixed_R2.fastq.gz
2+
human,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/human_R1.fastq.gz,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/human_R2.fastq.gz
3+
mouse,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/mouse_R1.fastq.gz,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/mouse_R2.fastq.gz
4+
mixed,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/mixed_R1.fastq.gz,https://raw.githubusercontent.com/tylergross97/nextflow_xengsort/main/tests/data/xengsort/mixed_R2.fastq.gz

0 commit comments

Comments
 (0)