Skip to content

Commit 0a2277b

Browse files
author
Seqera AI
committed
Fix test profile to use GitHub URLs for test data
Updated test samplesheet and config to reference GitHub raw URLs instead of relative paths. This ensures test data is accessible when running the pipeline on Seqera Platform. Changes: - Updated samplesheet.csv to use full GitHub raw URLs for FASTQ files - Updated nextflow.config test profile to use GitHub URLs for reference FASTAs - All test data now accessible via https://raw.githubusercontent.com/
1 parent 54d8f5c commit 0a2277b

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)