-
Notifications
You must be signed in to change notification settings - Fork 23
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
trio and family expr results #124
Comments
the |
Thanks for getting back to me so quickly. No, you're right. |
Hi,
Could you please look at the attachment? |
can you show a single expression that doesn't work along with the family structure? |
Here's the files. Thank you so much! |
Hi, Brent |
Hi Brent,
I encountered the following issues and would like to ask you for help.
I ran
--family-expr
because I considered fam1(unaffected parents and 3 affected kids) as one cohort.When using the
--family-epxr
, no any recessive variants were observed.However, it was found when the trio vcf file(cut fam1 to trio) was input to check other conditions.
So I tested expression with following:
1)
--family-expr
with trio vcf file2)
--trio
with fam1's vcf fileAnd the recessive variants were extracted from each.
Only in
--family-expr
with fam1's vcf file, the recessive variants doesn't appear.(I also applied the same filter condition to all expressions.)
Thanks for your time,
Seoon.
--------------------------------PED-------------------------------------
#family_ID sample_ID paternal_ID maternal_ID sex affection
fam1 F7 0 0 1 1
fam1 F9 0 0 2 1
fam1 F8 F7 F9 2 2
fam1 F14 F7 F9 2 2
fam1 F15 F7 F9 1 2
fam2 F10 0 0 1 1
fam2 F11 F10 0 1 1
fam2 F16 F10 0 2 1
--------------------------------codes-------------------------------------
1)
--family-epxr
slivar expr --js slivar-functions.js --vcf cs_affected_fam1_snpanno.vcf.gz --ped cs_two_fam.ped --info "(INFO['gnomAD_r2.1.1_merged_all'] < 0.01 || INFO['gnomAD_r2.1.1_merged_all'] == '.') && INFO.AC >1 && (INFO['Func.refGeneWithVer'] == 'exonic' || INFO['Func.refGeneWithVer'] == 'splicing') && INFO['ExonicFunc.refGeneWithVer'] != 'unknown' && variant.FILTER == 'PASS' && variant.ALT[0] != '*'" --family-expr "recessive:fam.every(segregating_recessive)"
2)
--trio
slivar expr --js slivar-functions.js --vcf cs_affected_fam1_snpanno.vcf.gz --ped cs_two_fam.ped--info "(INFO['gnomAD_r2.1.1_merged_all'] < 0.01 || INFO['gnomAD_r2.1.1_merged_all'] == '.') && INFO.AC >1 && (INFO['Func.refGeneWithVer'] == 'exonic' || INFO['Func.refGeneWithVer'] == 'splicing') && INFO['ExonicFunc.refGeneWithVer'] != 'unknown' && variant.FILTER == 'PASS' && variant.ALT[0] != '*'" --trio "recessive:recessive(kid, mom, dad)"
The text was updated successfully, but these errors were encountered: