示例#1
0
 def test__lookup_build_with_snp_pos_None(self):
     snps = SNPs()
     snps._snps = self.create_snp_df(rsid=["rs3094315"],
                                     chrom=["1"],
                                     pos=[1],
                                     genotype=["AA"])
     self.assertFalse(snps.detect_build())
示例#2
0
 def test__lookup_build_with_snp_pos_None(self):
     snps = SNPs()
     snps._snps = self.snps_discrepant_pos()
     assert not snps.detect_build()