Closed joonlee3 closed 10 years ago
Please separate the bam files with commas (,) and no whitespace.
i.e. --in ${tumour_id}.all.sorted.dedup.bam,${normal_id}.all.sorted.dedup.bam \ --out ${tumour_id}.all.sorted.dedup.realigned.bam,${normal_id}.all.sorted.dedup.realigned.bam \
As suggested in README, I was trying to realign tumor/normal bam together. I found that ABRA generated a realigned bam file only for a given tumor bam. Does ABRA not generate a re-aligned bam file for a normal bam? or Did I miss something?
My command: java -Xmx16g -jar ${ABRA_JAR} \ --in ${tumour_id}.all.sorted.dedup.bam ${normal_id}.all.sorted.dedup.bam \ --out ${tumour_id}.all.sorted.dedup.realigned.bam ${normal_id}.all.sorted.dedup.realigned.bam \ --ref ${reference_genome} \ --targets ${!target_bed_file_path} \ --threads 4 --mad ${mad} --mbq ${mbq} \ --working ${temp_dir}
Thank you, Joon