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

rGFA support (experimental) #1186

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion build-tools/downloadPangenomeTools
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ fi

# vg
cd ${pangenomeBuildDir}
wget -q https://github.com/vgteam/vg/releases/download/v1.52.0/vg
#wget -q https://github.com/vgteam/vg/releases/download/v1.51.0/vg
wget -q http://public.gi.ucsc.edu/~hickey/vg-patch/vg.98e3b7c867eb64178298535b076189ef7fda5031 -O vg
chmod +x vg
if [[ $STATIC_CHECK -ne 1 || $(ldd vg | grep so | wc -l) -eq 0 ]]
then
Expand Down
4 changes: 4 additions & 0 deletions src/cactus/cactus_progressive_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,8 @@
<!-- odgiDrawOptions: options to odgi draw, used for 2d viz -->
<!-- rindexOptions: options to vg gbwt -r (r-index construction) as used to make haplotype sampling index -->
<!-- haplOptions: options to vg haplotypes as used to make haplotype sampling index -->
<!-- minRGFAFragment: smallest rGFA (rank > 0) cover path to write -->
<!-- keepRGFAFragmentsInChromGraphs: toggle whether rGFA fragments end up in chromosome graphs (by default only in gbz/rgfa) -->
<graphmap_join
gfaffix="1"
clipNonMinigraph="1"
Expand All @@ -396,6 +398,8 @@
odgiDrawOptions="-H 1000"
rindexOptions="-p"
haplOptions="-v 2"
minRGFAFragment="50"
keepRGFAFragmentsInChromGraphs="0"
/>
<!-- hal2vg options -->
<!-- includeMinigraph: include minigraph node sequences as paths in output (note that cactus-graphmap-join will still remove them by default) -->
Expand Down
Loading