Fix test data paths for hmmer/hmmalign (#1272)

* fix: remove left-over unnecessary code

* Update main.nf
This commit is contained in:
James A. Fellows Yates 2022-02-10 13:14:44 +01:00 committed by GitHub
parent d0240fee1e
commit a9050b8ab6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 )
}