Skip to content

Commit

Permalink
added param file for config
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Feb 22, 2024
1 parent ea6eaab commit 3d4c000
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ if ( params.config_file ) {
def dst = new File("${workflow.launchDir}/edit_me.config")
dst << src.text
println("A config file can be found at ${workflow.launchDir}/edit_me.config")

def src1 = new File("${workflow.projectDir}/configs/grandeur_params.yml")
def dst1 = new File("${workflow.launchDir}/edit_me.yml")
dst1 << src1.text
println("A params file can be found at ${workflow.launchDir}/edit_me.yml")
exit 0
}

Expand Down

0 comments on commit 3d4c000

Please sign in to comment.