Skip to content

Commit 28ed897

Browse files
committed
deleted notes
1 parent e2efb01 commit 28ed897

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

modules/local/params_check/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ process PARAMS_CHECK {
1818
val path_data
1919

2020
output:
21+
// note: this needs to be a value even though it is a path because otherwise, nextflow will interpret it only
22+
// relatively to the work directory and as this path is outside the work directory, it will fail.
2123
val path_data, emit: path_data
2224

2325
when:

modules/local/predict_full/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ process PREDICT_FULL {
77
input:
88
tuple path(cross_study_datasets), val(model_name), val(test_mode), val(split_id), path(split_dataset), path(hpam_combi)
99
val(response_transformation)
10+
// note: this needs to be a value even though it is a path because otherwise, nextflow will interpret it only
11+
// relatively to the work directory and as this path is outside the work directory, it will fail.
1012
val(path_data)
1113

1214
output:

modules/local/randomization_test/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ process RANDOMIZATION_TEST {
66

77
input:
88
tuple val(model_name), val(test_mode), val(split_id), path(split_dataset), path(best_hpams), path(randomization_views)
9+
// note: this needs to be a value even though it is a path because otherwise, nextflow will interpret it only
10+
// relatively to the work directory and as this path is outside the work directory, it will fail.
911
val(path_data)
1012
val(randomization_type)
1113
val(response_transformation)

modules/local/robustness_test/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ process ROBUSTNESS_TEST {
66

77
input:
88
tuple val(model_name), val(test_mode), val(split_id), path(split_dataset), path(best_hpams), val(robustness_iteration)
9+
// note: this needs to be a value even though it is a path because otherwise, nextflow will interpret it only
10+
// relatively to the work directory and as this path is outside the work directory, it will fail.
911
val(path_data)
1012
val(randomization_type)
1113
val(response_transformation)

modules/local/train_and_predict_cv/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ process TRAIN_AND_PREDICT_CV {
55

66
input:
77
tuple val(model_name), val(test_mode), path(cv_data), path(hyperparameters)
8+
// note: this needs to be a value even though it is a path because otherwise, nextflow will interpret it only
9+
// relatively to the work directory and as this path is outside the work directory, it will fail.
810
val path_data
911
val response_transformation
1012

0 commit comments

Comments
 (0)