seekia/resources/geneticReferences/traits/hairColor.go

52 lines
1,021 B
Go
Raw Normal View History

package traits
// Hair color is influenced by thousands of genes
// We only have a few listed here
func getHairColorTraitObject()Trait{
hairColorLociList := []int64{
//These loci were taken from https://pubmed.ncbi.nlm.nih.gov/20546537/
28777,
12203592,
1540771,
6918152,
35264875,
3829241,
12821256,
12896399,
7495174,
4778211,
7174027,
11855019,
1667394,
12913832,
7183877,
11636232,
8028689,
8039195,
1805007,
1805008,
}
referencesMap := make(map[string]string)
referencesMap["SNPedia.com - Appearance"] = "https://www.snpedia.com/index.php/Appearance"
referencesMap["Genome-wide association studies of pigmentation and skin cancer: a review and meta-analysis"] = "https://pubmed.ncbi.nlm.nih.gov/20546537/"
hairColorObject := Trait{
TraitName: "Hair Color",
TraitDescription: "The color of a person's hair.",
LociList: hairColorLociList,
RulesList: []TraitRule{},
OutcomesList: []string{},
References: referencesMap,
}
return hairColorObject
}