Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Update FAF help page #1276
Update FAF help page #1276
Changes from 1 commit
ed1a515
0113054
edb4a57
54d173b
b499386
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we actually provide AC, AN, AF, homozygote count for the grpmax FAF? In the tables it looks like just faf95/99_max and faf95/99_max_gen_anc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, good catch! this text is old and probably describes the grpmax struct
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@klaricch @ch-kr , I was looking at the v4 genomes tables earlier and trying to figure out the precise difference between the
grpmax
andfafmax
values. It looks likefafmax.faf95_max
matches what it on the browser UI labeledGrpmax Filtering AF More information(95% confidence)
And
grpmax.AF
matches theAllele Frequency
(non-filtering) row on the browser UI corresponding togrpmax.gen_anc
.But this note on the browser UI calls the "Grpmax Filtering AF" just
grpmax
(calledfafmax
in the hail table), so I think there is some inconsistency between the termgrpmax
on the browser (in this note) and in the hail table and in the hail table documentation here: https://gnomad.broadinstitute.org/help/v4-hts#annotation-descriptionsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, it looks like one of the changes in this PR didn't get applied:
The text in the browser UI (this section):
should show that the text describing the filtering allele frequency applies to the
fafmax
annotation in the VCF and Hail Tables. The section belownow describes
grpmax
, which is distinct fromfafmax
.I'd welcome any updates if you have suggestions for how to make this text clearer!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(cc @rileyhgrant)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ch-kr Ah I see maybe I was looking at an out of date version of the code. It looks like maybe the browser has been partially updated with these changes but not completely.
One thing that could be improved is to make it totally clear that the field
Grpmax Filtering AF
that this tooltip is displayed on in the browser, is distinct fromGroup maximum allele frequency
(also described in this tooltip) in that one isfiltering
and one is not.It seems like there are 4 concepts:
The gnomad browser at the top shows 1 (AF) and 4 (grpmax FAF), and 2 (grpmax AF) can be looked up in the
Genetic Ancestry Group Frequencies
table on the page. And 3 is not available on the browser.And the hail tables call 1 ->
AF/freq
, 2 ->grpmax
, 3 ->faf
, and 4 ->fafmax
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can open an additional PR adding a line distinguishing grpmax from FAF (would you mind reviewing @theferrit32 ?)
for your second point -- these fields (
freq
,grpmax
,faf
) are described on this help page: https://gnomad.broadinstitute.org/help/v4-hts. is there text you'd like added there as well?