File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
nextflow. enable. dsl= 2
4
4
5
- include { version } from ' ./modules/version '
5
+ include { run_info } from ' ./modules/run_info '
6
6
include { candidates } from ' ./modules/candidates'
7
7
include { ims } from ' ./modules/ims'
8
8
include { plot } from ' ./modules/plot'
@@ -130,8 +130,8 @@ workflow {
130
130
========================
131
131
""" . stripIndent()
132
132
133
- // Grab HiTMaP version
134
- version( )
133
+ // Grab HiTMaP run info
134
+ run_info(config )
135
135
136
136
// Exit now if this is a dry run
137
137
if ( params. dryrun ) {
Original file line number Diff line number Diff line change 1
- // Get HiTMaP version
2
- process version {
1
+ // Get HiTMaP run information
2
+ process run_info {
3
3
debug = false
4
- tag " version "
4
+ tag " run_info "
5
5
container " ${ params.hitmap_container} "
6
6
time " 5m"
7
- publishDir " results/${ params.datetime} /version " , mode: ' copy'
7
+ publishDir " results/${ params.datetime} /run_info " , mode: ' copy'
8
8
9
9
input:
10
+ path(config, stageAs : " config.R" )
10
11
11
12
output:
13
+ path(" config.R" ), emit: config
12
14
path(" version.txt" ), emit: version
13
15
14
16
script:
You can’t perform that action at this time.
0 commit comments