diff --git a/pgscatalog_utils/scorefile/effectallele.py b/pgscatalog_utils/scorefile/effectallele.py index a72e3d1..be9ecb2 100644 --- a/pgscatalog_utils/scorefile/effectallele.py +++ b/pgscatalog_utils/scorefile/effectallele.py @@ -34,9 +34,10 @@ def __str__(self): return self.allele def _is_snp(self) -> bool: - """SNPs are the most common type of effect allele. More complex effect - alleles, like HLAs or APOE genes, often require extra work to represent in - genomes. Users should be warned about complex effect alleles. + """SNPs are the most common type of effect allele in PGS Catalog scoring + files. More complex effect alleles, like HLAs or APOE genes, often require + extra work to represent in genomes. Users should be warned about complex + effect alleles. >>> EffectAllele("+")._is_snp() False >>> EffectAllele("A")._is_snp()