本文整理匯總了Python中oncotator.TranscriptProviderUtils.TranscriptProviderUtils.render_protein_change方法的典型用法代碼示例。如果您正苦於以下問題:Python TranscriptProviderUtils.render_protein_change方法的具體用法?Python TranscriptProviderUtils.render_protein_change怎麽用?Python TranscriptProviderUtils.render_protein_change使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類oncotator.TranscriptProviderUtils.TranscriptProviderUtils
的用法示例。
在下文中一共展示了TranscriptProviderUtils.render_protein_change方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: generate_protein_change_from_vc
# 需要導入模塊: from oncotator.TranscriptProviderUtils import TranscriptProviderUtils [as 別名]
# 或者: from oncotator.TranscriptProviderUtils.TranscriptProviderUtils import render_protein_change [as 別名]
def generate_protein_change_from_vc(self, vc):
"""
:param vc: VariantClassification
:return:
"""
prot_position_start = vc.get_ref_protein_start()
prot_position_end = vc.get_ref_protein_end()
if prot_position_start == "" or prot_position_end == "":
return ""
ref_prot_allele = vc.get_ref_aa()
alt_prot_allele = vc.get_alt_aa()
result = TranscriptProviderUtils.render_protein_change(vc.get_vt(), vc.get_vc(), int(prot_position_start), int(prot_position_end), ref_prot_allele, alt_prot_allele, vc.get_secondary_vc())
return result
示例2: test_render_protein_change
# 需要導入模塊: from oncotator.TranscriptProviderUtils import TranscriptProviderUtils [as 別名]
# 或者: from oncotator.TranscriptProviderUtils.TranscriptProviderUtils import render_protein_change [as 別名]
def test_render_protein_change(self, variant_type, variant_classification, secondary_vc, prot_position_start, prot_position_end, ref_prot_allele, alt_prot_allele, strand, gt):
"""Simple test of protein change, once parameters have been rendered. """
guess = TranscriptProviderUtils.render_protein_change(variant_type, variant_classification, prot_position_start, prot_position_end, ref_prot_allele, alt_prot_allele, secondary_vc)
self.assertTrue(guess == gt, "Incorrect guess gt <> guess: %s <> %s" % (gt, guess))