You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using mashmap to mine homologous regions for my reference genes from genomes, and I have encountered a bug in the program. If one or both of the input sequences is shorter than a specific length then the program appears to run and exits with exit code 0, but does not produce any plots.
The ref.fas had to be at least 16100 bp long and the target.fas had to be at least 510 bp otherwise there was nothing in the output.
For me it would be already great if mashmap returned a different exit code than 0 in this case, because than I know that it failed because of input requirements and doesn't mean there are no homologous sequences.
The text was updated successfully, but these errors were encountered:
Yes, that is governed more or less by the algorithm. -s 500 indicates it will look for mappings of 500-long bp fragments from read to the reference by using Jaccard similarity of k-mers within them. It would not work if either query and reference are shorter.
Because this is an approximate method, it is a bit tricky to differentiate b/w the two scenarios.
Dear Developers,
I am using mashmap to mine homologous regions for my reference genes from genomes, and I have encountered a bug in the program. If one or both of the input sequences is shorter than a specific length then the program appears to run and exits with exit code 0, but does not produce any plots.
When using the following command:
The
ref.fas
had to be at least 16100 bp long and thetarget.fas
had to be at least 510 bp otherwise there was nothing in the output.For me it would be already great if mashmap returned a different exit code than 0 in this case, because than I know that it failed because of input requirements and doesn't mean there are no homologous sequences.
The text was updated successfully, but these errors were encountered: