I've been trying to extract a region of the chromosome in the .hal file with the reference genome being the mouse genome. Code snippet here:
hal2maf ${HAL_FILE} output.maf --refGenome Mus_musculus --refSequence chr14 --start 63231154 --length 320 --noDupes --noAncestors
from the code, I am using the 241 cactus v2 hal file and trying to extract at chr14 starting at position 63231154 and getting 320bp from that position.
I am getting this in return after converting the maf to fasta output:
Hi there,
I've been trying to extract a region of the chromosome in the .hal file with the reference genome being the mouse genome. Code snippet here:
hal2maf ${HAL_FILE} output.maf --refGenome Mus_musculus --refSequence chr14 --start 63231154 --length 320 --noDupes --noAncestors
from the code, I am using the 241 cactus v2 hal file and trying to extract at chr14 starting at position 63231154 and getting 320bp from that position.
I am getting this in return after converting the maf to fasta output:
where im only getting 6bp out of the 320bp. it looks like its starting at the correct place but not extending.
Any solutions would be helpful. Thank you!