Beispiel #1
0
def traits_report(genome):
    """Infer traits from genome."""
    return make_report(
        genome,
        [
            adiponectin_levels,
            alcohol_flush_reaction,
            aspargus_detection,
            biological_age,
            birth_weight,
            bitter_taste,
            blond_vs_brown_hair,
            blood_glucose,
            caffeine_metabolism,
            earwax_type,
            eye_color,
            hair_curl,
            heroin_addiction,
            hiv_aids_resistance,
            lactose_intolerance,
            malaria_resistance,
            male_pattern_baldness,
            muscle_performance,
            norovirus_resistance,
            pain_sensitivity,
            red_hair,
            smoking_behaviour,
        ],
    )
Beispiel #2
0
def traits_report(genome):
    """Infer traits from genome."""
    return make_report(genome, [
        adiponectin_levels,
        alcohol_flush_reaction,
        aspargus_detection,
        biological_age,
        birth_weight,
        bitter_taste,
        blond_vs_brown_hair,
        blood_glucose,
        breastfeeding_iq,
        caffeine_metabolism,
        earwax_type,
        eye_color,
        hair_curl,
        heroin_addiction,
        hiv_aids_resistance,
        lactose_intolerance,
        malaria_resistance,
        male_pattern_baldness,
        muscle_performance,
        norovirus_resistance,
        pain_sensitivity,
        red_hair,
        smoking_behaviour,
    ])
Beispiel #3
0
def health_report(genome):
    """Infers some health results."""
    return make_report(genome, [
        apoe_variants,
        breast_cancer,
        chronic_kidney_disease,
        hypothyroidism,
        migraines,
        restless_leg_syndrome,
        rheumatoid_arthritis_risk,
        scleroderma,
        stroke,
    ])
Beispiel #4
0
def inherited_conditions(genome):
    """Infers some inherited conditions."""
    return make_report(genome, [
        alpha_1_antitrypsin_deficiency,
        arsacs,
    ])
Beispiel #5
0
def inherited_conditions(genome):
    """Infers some inherited conditions."""
    return make_report(genome, [
        alpha_1_antitrypsin_deficiency,
        arsacs,
    ])