How to Interpret Chromosome Names from
I have downloaded data thus:
wget 'ftp://ftp.ncbi.nih.gov/snp/latest_release/VCF/GCF_000001405.25.gz'
which gives strange chromosome names: NC_000001.10 and NC_000002.10, NC_000003.10
Can I interpret these chromosomes as 1, 2, and 3 respectively?
• 1,715 views
•
link
2 answers
# Sequence-Name Sequence-Role Assigned-Molecule Assigned-Molecule-Location/Type GenBank-Accn Relationship RefSeq-Accn Assembly-Unit Sequence-Length UCSC-style-name
1 assembled-molecule 1 Chromosome CM000663.1 = NC_000001.10 Primary Assembly 249250621 chr1
use
bcftools annotate --rename-chrs
to change the chromosomes' names
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.