Skip to content

Commit

Permalink
Fix data references
Browse files Browse the repository at this point in the history
  • Loading branch information
Ksenia Krasheninnikova committed Jul 26, 2023
1 parent 197baf5 commit 6068a2b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions tests/config/test_data.config
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,14 @@ params {
pretext = "${params.test_data_base}/data/genomics/eukaryotes/galaxea_fascicularis/hic/jaGalFasc40_2.pretext"
}
}
'deilephila_porcellus' {
'mito' {
ref_fa = "${params.test_data_base}/data/genomics/eukaryotes/deilephila_porcellus/mito/MW539688.1.fasta"
ref_gb = "${params.test_data_base}/data/genomics/eukaryotes/deilephila_porcellus/mito/MW539688.1.gb"
hifi_reads = "${params.test_data_base}/data/genomics/eukaryotes/deilephila_porcellus/mito/ilDeiPorc1.HiFi.reads.fa"
contigs = "${params.test_data_base}/data/genomics/eukaryotes/deilephila_porcellus/mito/ilDeiPorc1.contigs.fa"
}
}
'imaging' {
'h5' {
plant_wga = "${params.test_data_base}/data/imaging/h5/plant_wga.h5"
Expand Down
6 changes: 3 additions & 3 deletions tests/modules/nf-core/mitohifi/mitohifi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ workflow test_mitohifi_mitohifi {

species = "'Deilephila porcellus'"

data_contigs = Channel.of([[id:"ilDeiPorc1"],[],file(params.test_data['eukaryotes']['deilephila_porcellus']['mito']['ilDeiPorc1.contigs.fa'], checkIfExists: true)])
ref_gb = file(params.test_data['eukaryotes']['deilephila_porcells']['mito']['MW539688.1.gb'], checkIfExists: true)
ref_gb = file(params.test_data['eukaryotes']['deilephila_porcells']['mito']['MW539688.1.fasta'], checkIfExists: true)
data_contigs = Channel.of([[id:"ilDeiPorc1"],[],file(params.test_data['deilephila_porcellus']['mito']['contigs'], checkIfExists: true)])
ref_gb = file(params.test_data['deilephila_porcellus']['mito']['ref_gb'], checkIfExists: true)
ref_fa = file(params.test_data['deilephila_porcellus']['mito']['ref_fa'], checkIfExists: true)
code = 5
MITOHIFI_MITOHIFI ( data_contigs, ref_fa, ref_gb, code )
}
2 changes: 1 addition & 1 deletion tests/modules/nf-core/mitohifi/mitohifi/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- mitohifi/mitohifi
files:
- path: output/mitohifi/contigs_stats.tsv
md5sum: 1db72e07023dadaea9d9c5086c243203
md5sum: 4b1a80bf2049e9facb04e7d2e99409d2
- path: output/mitohifi/final_mitogenome.fasta
md5sum: 5654c418bbf991483d9e618dd849af03
- path: output/mitohifi/final_mitogenome.gb
Expand Down

0 comments on commit 6068a2b

Please sign in to comment.