Open averagehat opened 9 years ago
Currently kGEM accepts as input only aligned reads in fasta format. This format is spanning and extending reads with '-' instead of SAM records. For conversion required reference and sam file and https://github.com/night-stalker/ERIF tool It is not very handy but parameters -sam reads.sam -g ref.fasta -o output.fasta I am working on merging those codes so kGEM will be able to accept SAM file as input but this will be added only in future release.
I see, I got confused by .sam
extension in the example of usage:
java -jar KGEM.jar reads.sam -k 50 -tr 5
I will try out the ERIF tool.
Yea I see, README haven't been updated for a while, anyway it will support that later, also note that -k is not an argument so usage is kgem reads.sam 50 -o out.fas this k is not optional now. Also use help usage as a guide since README is outdated a bit.
Here is the file: https://github.com/averagehat/biopandas/blob/9f263702f967ccbefd888b837f9122767806106c/780.sam
I also tried a file with only one reference sequence but that also failed. Additionally, if I try to run with optional arguments, aka
I just get the usage echoed back to me.
Thanks