MikeAxtell / ShortStack

ShortStack: Comprehensive annotation and quantification of small RNA genes
MIT License
88 stars 29 forks source link

--pad 0 doesn't work, solution add exists() #99

Closed ceiabreu closed 3 years ago

ceiabreu commented 4 years ago

Hi Mike,

Just a quick suggestion to improve functionality. For those that want --pad 0, it currently resets to default of --pad 75. Work around:

line 857: unless($$options{'pad'}) { change to: line 857: unless(exists $$options{'pad'}) {

Best,

Cei

MikeAxtell commented 3 years ago

Thanks!