Skip to content

Commit

Permalink
eula update
Browse files Browse the repository at this point in the history
  • Loading branch information
Riley-Grindle committed Aug 7, 2024
1 parent c134e50 commit dadf8ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ process {
mode: params.publish_dir_mode
]
ext.args = params.integration_method
ext.args2 = params.eula_agreement
}

withName: 'FIND_NN_CLUSTER' {
Expand Down
4 changes: 2 additions & 2 deletions modules/local/plotting.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ process DISPLAY_REDUCTION {
val resolutions
val makeLoupe
val integration_tool
val eula_agreement



Expand All @@ -35,7 +34,8 @@ process DISPLAY_REDUCTION {
} else {
integration_method = "NULL"
}
def args = task.ext.args1 ?: 'NULL'
def args = task.ext.args ?: ''
def eula_agreement = task.ext.args2 ?: 'NULL'
"""
pcMax=\$(grep -i -E "^PCs used" $validation_log | perl -pe "s/^PCs.*- //g")
Expand Down
3 changes: 1 addition & 2 deletions workflows/scscape.nf
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,7 @@ workflow SCSCAPE {
ch_nn_clusters_w_log.map { it[1] },
params.resolutions,
params.makeLoupe,
params.integration_method,
params.eula_agreement
params.integration_method
)
//CUSTOM_DUMPSOFTWAREVERSIONS (
// ch_versions.unique().collectFile(name: 'collated_versions.yml')
Expand Down

0 comments on commit dadf8ed

Please sign in to comment.