lh3 / minimap

This repo is DEPRECATED. Please use minimap2, the successor of minimap.
https://github.com/lh3/minimap2
MIT License
106 stars 29 forks source link

Worker pipeline assertion fail #8

Closed mahesh-panchal closed 7 years ago

mahesh-panchal commented 7 years ago

Hi,

I get an issue that I'm not sure what it means.

+ /cfs/klemming/nobackup/m/mahpa906/Tools/minimap/minimap -Sw5 -L100 -m0 -t60 minimap_input.fasta minimap_input.fasta
[M::mm_idx_gen::165.770*1.55] collected minimizers
[M::mm_idx_gen::191.565*5.30] sorted minimizers
[M::main::191.565*5.30] loaded/built the index for 750576 target sequence(s)
[M::main] max occurrences of a minimizer to consider: 588
[M::mm_idx_gen::35571.053*8.85] collected minimizers
[M::mm_idx_gen::35920.173*8.79] sorted minimizers
[M::main::35920.173*8.79] loaded/built the index for 448340 target sequence(s)
[M::main] max occurrences of a minimizer to consider: 587
[M::mm_idx_gen::52792.794*10.12] collected minimizers
[M::mm_idx_gen::52803.740*10.12] sorted minimizers
[M::main::52803.740*10.12] loaded/built the index for 655348 target sequence(s)
[M::main] max occurrences of a minimizer to consider: 577
minimap: index.c:205: worker_pipeline: Assertion `strlen(s->seq[i].name) <= 254' failed.
run_Miniasm_2017-01-25_11.13.sh: line 33: 101089 Aborted                 $MINIMAP -Sw5 -L100 -m0 -t$NPROCS $MINIMAP_INPUT $MINIMAP_INPUT
     101090 Done                    | gzip -1 > $MINIASM_INPUT

The sequence lengths are all greater than 1000bp.

Regards, Mahesh.

lh3 commented 7 years ago

Your sequence names are too long.

mahesh-panchal commented 7 years ago

Thank you.