當前位置: 首頁>>代碼示例>>Python>>正文


Python TranscriptProviderUtils.render_protein_change方法代碼示例

本文整理匯總了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
開發者ID:alexramos,項目名稱:oncotator,代碼行數:16,代碼來源:VariantClassifier.py

示例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))
開發者ID:alexramos,項目名稱:oncotator,代碼行數:6,代碼來源:TranscriptProviderUtilsTest.py


注:本文中的oncotator.TranscriptProviderUtils.TranscriptProviderUtils.render_protein_change方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。