-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong centormere coordinates #29
Comments
Hi, thanks will look into this asap. |
Hi @ivan-balashov , thank you for raising this issue. The centromere coordinates reported in CNAqc::chr_coordinates_GRCh38 are taken from |
Your proposal is not consistent with the current design of CNAqc because it is not possible for a user to modify the centromere coordinates obtained by https://github.com/caravagnalab/CNAqc/blob/master/R/get_reference.R Please think of a way in which this becomes possible (we can add this as a feature). I am changing the issue to enhancment. |
This might be handled together with adding support for mouse coordinates @vvvirgy. Can you handle it? You need to
|
Ping @vvvirgy |
Last time I ping this @vvvirgy |
Hi! thanks for your great package!
Looks like there is an issue with centromere coordinates for some chromosomes in CNAqc::chr_coordinates_GRCh38
because if I get them from USCS I've got this
You can got same with this command
curl -s "http://hgdownload.cse.ucsc.edu/goldenPath/hg38/database/cytoBand.txt.gz" | gunzip -c | grep acen | sort -V -k1,2 | awk 'BEGIN {print "chromosome\tstart\tend"} {print $1 "\t" $2 "\t" $3}' > centromere.txt
My issue not about exact bases only but there are same start and end of centromere(e.g. chr2 and chr4) which is not good;
Thanks!
The text was updated successfully, but these errors were encountered: