-
Notifications
You must be signed in to change notification settings - Fork 89
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
Add PMID to finding notes #4209
Conversation
], [ | ||
'Broad_HG00731_1_248367227', 'Broad_HG00731', 'Broad_exome_VCGS_FAM203_621_D2', 'SNV/INDEL', 'GRCh37', '1', | ||
'248367227', 'TC', 'T', 'CA1501729', 'RP11', '', '', '', 'Homozygous', '', 'paternal', '', '', 'Known', '', | ||
'MONDO:0044970', '', 'Uncertain', '', 'Broad_HG00732', 'SR-ES', '', '', '', '', '', '', '', | ||
], [ | ||
'Broad_HG00731_19_1912634', 'Broad_HG00731', 'Broad_exome_VCGS_FAM203_621_D2', 'SNV/INDEL', 'GRCh38', '19', |
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.
this row was always in the table, we just were not explicitly testing it before
@@ -165,7 +165,7 @@ def parse_anvil_metadata( | |||
airtable_fields: Iterable[str] = None, mme_value: Aggregate = None, include_svs: bool = True, | |||
variant_json_fields: Iterable[str] = None, variant_attr_fields: Iterable[str] = None, post_process_variant: Callable[[dict, list[dict]], dict] = None, | |||
include_no_individual_families: bool = False, omit_airtable: bool = False, include_family_name_display: bool = False, include_family_sample_metadata: bool = False, | |||
include_discovery_sample_id: bool = False, include_mondo: bool = False, include_parent_mnvs: bool = False, | |||
include_discovery_sample_id: bool = False, include_mondo: bool = False, omit_parent_mnvs: bool = False, |
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.
changes the default behavior of this function to include parent MNVs since that is the behavior we want almost everywhere, so the one place we don't want it sets that explicitly
'sv_name': _get_sv_name(v), | ||
'notes': discovery_notes, | ||
} | ||
def _get_discovery_notes(variant, gene_variants, omit_parent_mnvs): |
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.
functionality did not change, only indenting
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.
code LGTM but wondering if you can tell me more about the relationship between mnvs (multi-nucleotide-variants I think) and pmids
No description provided.