error in pullSnpGeno() function #185
Unanswered
Anilkumargpb
asked this question in
Q&A
Replies: 1 comment 4 replies
-
@Anilkumargpb What do these commands report:
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HI everyone,
I was generating the founder population, including marker data, marker effects, and map information, with following codes. after a round of random crossing, the snp information of simulated population is showing zeros for all markers upon pulling snp genotypes. Here are the codes used.
founderPop=importInbredGeno(geno = snp, genMap = GenMap, ped = NULL)
SP = SimParam$new(founderPop)
SP$importTrait(markerNames = qtlEffects$marker,
addEff = qtlEffects$aditiveEffect,
name = "Your_Trait")
SP$addSnpChip(5)
Parents = newPop(founderPop)
F1 = randCross(Parents, 200)
HDRW = makeDH(F1, 100)
pullSnpGeno(HDRW)
Let me know where I am going wrong.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions