Skip to content

Commit

Permalink
Minor patch
Browse files Browse the repository at this point in the history
  • Loading branch information
JLittlef committed Mar 19, 2024
1 parent 5025ba0 commit 9403257
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process PdbfixerMutants {
path incsv
path inpdb
output:
path '*_fixed.pdb', emit: fixed_pdbs
tuple path '*_fixed.pdb', emit: fixed_pdbs
path '*_reformat.csv', emit: csv_reformat
shell:
"""
Expand All @@ -20,10 +20,10 @@ process OpenmmMinimise {
publishDir "${params.resultsDir}/openmm-minimise/", pattern: "*folded.pdb", mode: 'copy'
publishDir "${params.resultsDir}/openmm-minimise/", pattern: "data.csv", mode: 'copy'
input:
path fixed_pdbs
tuple path fixed_pdbs
output:
path '*_unfolded.pdb', emit: unfolded_pdbs
path '*_folded.pdb', emit: folded_pdbs
tuple path '*_unfolded.pdb', emit: unfolded_pdbs
tuple path '*_folded.pdb', emit: folded_pdbs
path 'data.csv', emit: data
shell:
"""
Expand Down

0 comments on commit 9403257

Please sign in to comment.