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

Update billion count icon in docs and other updates #1047

Merged
merged 9 commits into from
Nov 3, 2023
4 changes: 4 additions & 0 deletions scripts/docs/generate_population_table.pl
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@ sub get_vcf_content_types {
if ( ($info_field =~ /AF=/) || ($info_field =~ /AC=/ && $info_field =~ /AN=/) ) {
push @types, "frequency";
}
# a hard-coded check for NCBI-ALPHA and TOPMED as they have very special field for frequency
if ( ($info_field =~ /AN_SAMN/) || ($info_field =~ /TOPMED=/) ) {
push @types, "frequency";
}
nuno-agostinho marked this conversation as resolved.
Show resolved Hide resolved
}

return @types;
Expand Down