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())
def test__lookup_build_with_snp_pos_None(self): snps = SNPs() snps._snps = self.snps_discrepant_pos() assert not snps.detect_build()