You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this the genotype of the probe or the reference? I believe it is the probe.... is there a way to add the reference genotype to it? Thank you.
from IlluminaBeadArrayFiles import GenotypeCalls, BeadPoolManifest, code2genotype
gtc_file = "path_to_genotypes.gtc"
manifest_file = "path_to_manifest.bpm"
names = BeadPoolManifest( manifest_file ).names
genotypes = GenotypeCalls( gtc_file ).get_genotypes()
c = 0 # a counter to only show the first 10 genotypes
for (locus, genotype) in zip( names, genotypes ):
print( locus + "," + code2genotype[genotype] )
if c >= 10:
break
c += 1
The text was updated successfully, but these errors were encountered:
Is this the genotype of the probe or the reference? I believe it is the probe.... is there a way to add the reference genotype to it? Thank you.
The text was updated successfully, but these errors were encountered: