tkrahn / extract23

Extract a simulated 23andMe (V3) style file from a Whole Genome BAM file
GNU General Public License v3.0
28 stars 5 forks source link

Wrong test clause #5

Closed napobo3 closed 7 years ago

napobo3 commented 7 years ago

The following clause

if [ ${verbose} > 0 ]; then

always creates a file with the "0" name.

Please change to :

if [ ${verbose} -gt 0 ]; then

tkrahn commented 7 years ago

Thanks! I already wondered where this 0 file comes from :). Fixed in version 1.3