Entering edit mode
2.5 years ago
optimistsso4co3
▴
130
I get around 5x less mobile elements when calling each chromosome separate compared to when monolith genome .bam is supplied. What is the reason for that? Here is my example command:
java -jar ${meltDir}/MELT.jar Single -h ${refFasta} -bamfile ${id}.${chr}.bam -n ${refDir}/hg38.genes.bed -t mei_list.txt -w . -d 10000
A quick look at the manual indicates that MELT is designed to be run on genome(s).
So running it separately on each chromosome probably treats them as different genomes. So you are not using the tool as designed/intended.
It's slower when computing whole genome. I also haven't tried running multiple genomes at the same time, that could bring a different results.