Replace elif list() > int() with else
authorDiane Trout <diane@ghic.org>
Mon, 2 Feb 2015 22:40:47 +0000 (14:40 -0800)
committerDiane Trout <diane@ghic.org>
Mon, 2 Feb 2015 22:40:47 +0000 (14:40 -0800)
commitc94b5097ece91d3207b7f2e3b3363227d43526be
tree8e1748fd1975a27920a28ee714df265d7cf83562
parent7d065a84588930993d796ccfa0cc81d5f615c0b3
Replace elif list() > int() with else

the expression was always true under python2 and
is a syntax error in python3. Replacing it with
if len(list()) > 0 caused test case failures
so this seemed like the best idea.
htsworkflow/pipelines/ipar.py