Skip to content

Commit

Permalink
replace baseDir with projectDir
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Oct 2, 2023
1 parent bdb50ba commit a891e6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pipelines/annotation_pipeline.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (!params.output_dir) {
exit 1, helpMessage()
}
batchRoot = params.output_dir
codeRoot = "${baseDir}/.."
codeRoot = "${projectDir}/.."


/*
Expand Down
2 changes: 1 addition & 1 deletion pipelines/export_curation_spreadsheet.nf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (!params.curation_root or !params.input_csv) {
exit 1, helpMessage()
}
curationRoot = params.curation_root
codeRoot = "${baseDir}/.."
codeRoot = "${projectDir}/.."


/*
Expand Down
2 changes: 1 addition & 1 deletion pipelines/generate_curation_spreadsheet.nf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (!params.curation_root) {
exit 1, helpMessage()
}
curationRoot = params.curation_root
codeRoot = "${baseDir}/.."
codeRoot = "${projectDir}/.."


/*
Expand Down

0 comments on commit a891e6f

Please sign in to comment.