-
Notifications
You must be signed in to change notification settings - Fork 202
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
drop in xg0 (take two) #2402
drop in xg0 (take two) #2402
Conversation
Clarify graph building requirements.
Having the libhandlegraph version specified in two places
is a wee bit dangerous (a little mismatch gave me weird segfaults) |
From the first failed bash tap test, it looks like creating an xg index is dropping a bunch of paths
|
It might be that the specific code path that is used by vg wasn't tested. I
had been building from GFA during testing.
…On Fri, Aug 16, 2019, 19:36 Glenn Hickey ***@***.***> wrote:
From the first failed bash tap test
<https://github.com/vgteam/vg/blob/master/test/t/05_vg_find.t#L93-L96>,
it looks like creating an xg index is dropping a bunch of paths
vg construct -m 1000 -r small/xy.fa -v small/xy2.vcf.gz -R x -C -a 2> /dev/null | vg view -j - | sed s/_alt/alt/g | vg view -Jv - >w.vg
vg paths -v w.vg -L | wc -l
39
vg index w.vg -x w.xg
vg paths -x w.xg -L | wc -l
30
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2402?email_source=notifications&email_token=AABDQEOXAFXV7DUHNQ4NZY3QE3QQBA5CNFSM4IMKVXS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD4PHSEA#issuecomment-522090768>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABDQEM3HH2YWRVT4FQTC73QE3QQBANCNFSM4IMKVXSQ>
.
|
Yeah, this error seems to be coming from empty paths getting dropped by |
Remove multipath alignment step from Giraffe
Most of these changes are now in master via #2409. All the test failures in this PR are therefore due to either
A future PR adding the new xg should only need to adjust the Makefile and submodules as well as the aforementioned VGSet function. Hopefully the third time is the charm. Anyone else wanna give it a shot? @adamnovak @ekg ? |
I'm going to set up a PR that makes your other changes on top of this. We will see how that goes. |
This is a fresh stab at #2311, made much easier by all the handlefication efforts in the meantime.
As of this commit, it's compiling but not linking due to a couple trailing XGPath usages..