mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
d7a3286a9a
* Ignore vim tmp files * Added hmmalign module, not yet tests * Test output * Replaced functions.nf for hmmalign with upstream * Update software/hmmer/hmmalign/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/hmmer/hmmalign/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/hmmer/hmmalign/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/hmmer/hmmalign/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/hmmer/hmmalign/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/hmmer/hmmalign/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/config/pytest_software.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/hmmer/hmmalign/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
17 lines
630 B
Text
17 lines
630 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { HMMER_HMMALIGN } from '../../../../software/hmmer/hmmalign/main.nf' addParams( options: [:] )
|
|
|
|
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
|
|
]
|
|
|
|
hmm = file('https://raw.githubusercontent.com/erikrikarddaniel/test-datasets/modules/data/delete_me/bac.16S_rRNA.hmm')
|
|
|
|
HMMER_HMMALIGN ( input, hmm )
|
|
}
|