Skip to content

reporting of coding variants with rna support #205

@kcotto-shennon

Description

@kcotto-shennon

I recently ran a case and noticed this in the report:

Total number of somatic variants: 188
Somatic variants with predicted coding effects: 14
Somatic variants with predicted coding effects and RNA support: 18
Somatic variants with predicted coding effects, RNA support and predicted MHC ligands: 6

Based on the logic above, I would expect "Somatic variants with predicted coding effects and RNA support" to always be a subset of "Somatic variants with predicted coding effects". However, when I look at the logic in the code, it seems like that is not the case. Am I missing something here?

counts_dict = {}
counts_dict['num_total_variants'] = len(self.isovar_results)
counts_dict['num_coding_effect_variants'] = \
     sum([v['is_coding_nonsynonymous'] for v in variant_properties])
counts_dict['num_variants_with_rna_support'] = \
     sum([v['rna_support'] for v in variant_properties])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions