mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
4d89d6b2f0
* hifiasm copied from fastqc * hifiasm tests init from fastqc * meta.yml init; test.yml and main.nf for printing version * Add hifiasm version printing * Removed spaced on an empty line * Reverted hifiasm from main * Updated seacr callpeak to include a control threshold * Whitespace Co-authored-by: Sviatoslav Sidorov <sviatoslav.sidorov@crick.ac.uk> Co-authored-by: Svyatoslav Sidorov <svet.sidorov@gmail.com>
23 lines
No EOL
777 B
Text
23 lines
No EOL
777 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SEACR_CALLPEAK } from '../../../../modules/seacr/callpeak/main.nf' addParams( options: [ args:'norm stringent' ] )
|
|
|
|
workflow test_seacr_callpeak {
|
|
input = [ [ id:'test_1'],
|
|
file(params.test_data['homo_sapiens']['illumina']['cutandrun_bedgraph_test_1'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['cutandrun_bedgraph_test_2'], checkIfExists: true)
|
|
]
|
|
|
|
SEACR_CALLPEAK ( input, 0.05 )
|
|
}
|
|
|
|
workflow test_seacr_callpeak_threshold {
|
|
input = [ [ id:'test_1'],
|
|
file(params.test_data['homo_sapiens']['illumina']['cutandrun_bedgraph_test_1'], checkIfExists: true),
|
|
[]
|
|
]
|
|
|
|
SEACR_CALLPEAK ( input, 0.05 )
|
|
} |