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

draw 1D uncalled viz #109

Merged
merged 1 commit into from
Jan 16, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/pangenome/pggb:20230110163855669c4e
FROM ghcr.io/pangenome/pggb:20230113201558a9a04c
LABEL authors="Simon Heumos, Michael Heuer, Lukas Heumos, Erik Garrison, Andrea Guarracino" \
description="Docker image containing all software requirements for the nf-core/pangenome pipeline"

Expand Down
6 changes: 6 additions & 0 deletions assets/multiqc_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ custom_data:
odgi_viz_depth:
section_name: ODGI 1D visualization by node depth
description: This shows a 1D rendering of the built pangenome graph where the paths are colored according to path depth. Using the Spectra color palette with 4 levels of path depths, white indicates no depth, while grey, red, and yellow indicate depth 1, 2, and greater than or equal to 3, respectively.
odgi_viz_uncalled:
section_name: ODGI 1D visualization by uncalled bases
description: This shows a 1D rendering of the built pangenome graph where the paths are colored according to the coverage of uncalled bases. The lighter the green, the higher the 'N' content of a node is.
odgi_draw:
section_name: ODGI 2D drawing
description: This image shows a 2D rendering of the built pangenome graph.
Expand All @@ -33,6 +36,8 @@ sp:
fn: "*viz_inv_multiqc.png"
odgi_viz_depth:
fn: "*viz_depth_multiqc.png"
odgi_viz_uncalled:
fn: "*viz_uncalled_multiqc.png"
testing_name:
fn: "*draw.png"
ignore_images: false
Expand All @@ -50,4 +55,5 @@ custom_content:
- odgi_viz_pos
- odgi_viz_inv
- odgi_viz_depth
- odgi_viz_uncalled
- odgi_draw
2 changes: 2 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,13 @@ process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline.html"
timeline.overwrite = true

}
report {
enabled = true
file = "${params.tracedir}/execution_report.html"
report.overwrite = true
}
trace {
enabled = true
Expand Down
1 change: 1 addition & 0 deletions subworkflows/local/odgi/odgi_viz/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ process odgiViz {
odgi viz -i $graph -o ${graph}.viz_depth_multiqc.png -x 1500 -y 500 -a 10 -I ${params.smoothxg_consensus_prefix} -m
odgi viz -i $graph -o ${graph}.viz_inv_multiqc.png -x 1500 -y 500 -a 10 -I ${params.smoothxg_consensus_prefix} -z
odgi viz -i $graph -o ${graph}.viz_O_multiqc.png -x 1500 -y 500 -a 10 -I ${params.smoothxg_consensus_prefix} -O
odgi viz -i $graph -o ${graph}.viz_uncalled_multiqc.png -x 1500 -y 500 -a 10 -I ${params.smoothxg_consensus_prefix} -N
"""
}

Expand Down