Hi!
I have tried processing individual chromosomes with picard LiftoverVcf from GRCh37 to GRCh38.
However, when I look at the results there are a few variants that has mapped to another chromosome.
This also happenes for allmost all chromosomes, with e.g. chr9 having 3 variants mapping to chr1 . Does anyone know why this is happening? Am I doing anything wrong? or is this completely normal behavior? I have made sure that the chromosome naming is the same in the vcf, chainfile and ref, they are all chr[1-22,XY]
The command used for liftovervcf:
Java -Xmx128g -jar picard.jar LiftoverVcf \
-I chr2_MAF_0.05.vcf.gz \
-O chr2_0.05_GRCh38.vcf.gz \
-CHAIN hg19ToHg38.over.chain.gz \
-REJECT chr2_rejected.vcf
-R resources_broad_hg38_v0_Homo_sapiens_assembly38.fasta \
--TMP_DIR ./TMP \
--MAX_RECORDS_IN_RAM 10000
best Jonas
Giulio Genovese Aha ok I see! now it makes sense:) thank you so much for clearing that out for me!:)