mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Fix test data paths for hmmer/hmmalign (#1272)
* fix: remove left-over unnecessary code * Update main.nf
This commit is contained in:
parent
d0240fee1e
commit
a9050b8ab6
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ workflow test_hmmer_hmmalign {
|
|||
|
||||
input = [
|
||||
[ id:'test' ], // meta map
|
||||
file('https://raw.githubusercontent.com/erikrikarddaniel/test-datasets/modules/data/delete_me/e_coli_k12_16s.fna') // Change to params.test_data syntax after the data is included in tests/config/test_data.config
|
||||
file('https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/delete_me/e_coli_k12_16s.fna') // Change to params.test_data syntax after the data is included in tests/config/test_data.config
|
||||
]
|
||||
|
||||
hmm = file('https://raw.githubusercontent.com/erikrikarddaniel/test-datasets/modules/data/delete_me/bac.16S_rRNA.hmm')
|
||||
hmm = file('https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/delete_me/bac.16S_rRNA.hmm')
|
||||
|
||||
HMMER_HMMALIGN ( input, hmm )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue