Skip to content

Commit 5768fc6

Browse files
committed
syntax fix and project code isolation testing
1 parent 9b298c7 commit 5768fc6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

workflows/Nextflow/modules/runAnnotation/runAnnotation.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ process keggPlots {
160160
mode: 'copy'
161161
)
162162
publishDir(
163-
path: "${settings["keggViewerDir"]}"
164-
mode: 'copy'
163+
path: "${settings["keggViewerDir"]}",
164+
mode: 'copy',
165165
pattern: "kegg_map/*"
166166
)
167167

workflows/Nextflow/templates/module_params.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
gcode = <% if(typeof gcode !== 'undefined') { %><%= gcode %><% } else { %>11<%} %>
8787
keggView = <% if(typeof keggView !== 'undefined') { %><%= keggView %><% } else { %>false<%} %>
8888
keggViewerDir = "<%=keggViewerDir %>"
89+
dataCode = "<%= nextflowOutDir %>".split("/")[-2]
8990
}
9091

9192
binning {

0 commit comments

Comments
 (0)