Skip to content

Commit 4a01a63

Browse files
authored
Merge pull request #1358 from nf-core/static_uri_megatests
Update test_full.config to restore a static URI for megatests
2 parents ad43736 + eff73a9 commit 4a01a63

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
113113
- [PR #1352](https://github.com/nf-core/rnaseq/pull/1352) - Assorted fixes to MultiQC usage
114114
- [PR #1355](https://github.com/nf-core/rnaseq/pull/1355) - Make all curves on subway map better looking, and all lines now have the same width
115115
- [PR #1357](https://github.com/nf-core/rnaseq/pull/1357) - Fix anchor issue in multiqc
116+
- [PR #1358](https://github.com/nf-core/rnaseq/pull/1358) - Update test profiles to restore a static URI for megatests
116117

117118
### Parameters
118119

conf/test.config

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ params {
2020
max_time = '6.h'
2121

2222
// Input data
23-
input = params.pipelines_testdata_base_path + 'samplesheet/v3.10/samplesheet_test.csv'
23+
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/samplesheet/v3.10/samplesheet_test.csv'
2424

2525
// Genome references
26-
fasta = params.pipelines_testdata_base_path + 'reference/genome.fasta'
27-
gtf = params.pipelines_testdata_base_path + 'reference/genes_with_empty_tid.gtf.gz'
28-
gff = params.pipelines_testdata_base_path + 'reference/genes.gff.gz'
29-
transcript_fasta = params.pipelines_testdata_base_path + 'reference/transcriptome.fasta'
30-
additional_fasta = params.pipelines_testdata_base_path + 'reference/gfp.fa.gz'
31-
32-
bbsplit_fasta_list = params.pipelines_testdata_base_path + 'reference/bbsplit_fasta_list.txt'
33-
hisat2_index = params.pipelines_testdata_base_path + 'reference/hisat2.tar.gz'
34-
salmon_index = params.pipelines_testdata_base_path + 'reference/salmon.tar.gz'
35-
rsem_index = params.pipelines_testdata_base_path + 'reference/rsem.tar.gz'
26+
fasta = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/genome.fasta'
27+
gtf = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/genes_with_empty_tid.gtf.gz'
28+
gff = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/genes.gff.gz'
29+
transcript_fasta = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/transcriptome.fasta'
30+
additional_fasta = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/gfp.fa.gz'
31+
32+
bbsplit_fasta_list = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/bbsplit_fasta_list.txt'
33+
hisat2_index = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/hisat2.tar.gz'
34+
salmon_index = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/salmon.tar.gz'
35+
rsem_index = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/reference/rsem.tar.gz'
3636

3737
// Other parameters
3838
skip_bbsplit = false

conf/test_full.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ params {
1515
config_profile_description = 'Full test dataset to check pipeline function'
1616

1717
// Parameters for full-size test
18-
input = params.pipelines_testdata_base_path + 'samplesheet/v3.10/samplesheet_full.csv'
18+
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/626c8fab639062eade4b10747e919341cbf9b41a/samplesheet/v3.10/samplesheet_full.csv'
1919
genome = 'GRCh37'
2020
pseudo_aligner = 'salmon'
2121
}

0 commit comments

Comments
 (0)