Hi.
I have usually been using hg19 reference file from ucsc.
However, ucsc has a prefix 'chr' in its files.
Of course, I am able to exclude 'chr' prefix by script programming, but I don't want to.
Instead, I need another human reference file which does not contain 'chr' prefix itself.
Do any another reference files exist not ucsc?
The GATK bundle has what you need
Is there a reason why you wanna bypass something as simple as a
sed 's/chr//g' ucsc.hg19.fa >ucsc.hg19.nochr.fa
?I think that just simply excluding of 'chr' would make any problem later for processing.
and I also though that users must match the reference file that was used for mapping program such as bwa with others variation calling program.