Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save sample/patient-specific metapipeline logs #196

Merged
merged 8 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
+ More descriptive error messages on failure to identify output files
+ Add call-sCNA to `requested_pipelines` in `template.config`
+ Handling for SRC inputs
+ Add nextflow logs sample/patient-specific metapiipeline. #187
zhuchcn marked this conversation as resolved.
Show resolved Hide resolved
### Changed
+ Use GitHub container registry CI/CD check
+ Calculate-targeted-coverage: `1.0.0-rc.2` -> `1.1.0`
Expand Down
15 changes: 15 additions & 0 deletions config/metapipeline_DNA_base.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,18 @@ process {
ext.fail_gracefully = true
}
}

trace {
enabled = true
file = "${params.metapipeline_log_output_dir}/nextflow-log/${params.patient}/trace.txt"
}

yashpatel6 marked this conversation as resolved.
Show resolved Hide resolved
report {
enabled = true
file = "${params.metapipeline_log_output_dir}/nextflow-log/${params.patient}/report.html"
}

timeline {
enabled = true
file = "${params.metapipeline_log_output_dir}/nextflow-log/${params.patient}/timeline.html"
}
Loading