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
The GetSegments.ByGene function performs a mapping of X & Y against the TCGA data. TCGA stores X as 23 and Y as 24, so no mapping of these chromosomes is possible. A fix is to simply add
The GetSegments.ByGene function performs a mapping of X & Y against the TCGA data. TCGA stores X as 23 and Y as 24, so no mapping of these chromosomes is possible. A fix is to simply add
dat$chrom[dat$chrom == 23]<-"X"
dat$chrom[dat$chrom == 24]<-"Y"
After the filter.
The text was updated successfully, but these errors were encountered: