Commit 98a57fe4 authored by TomKellyGenetics's avatar TomKellyGenetics
Browse files

correct default read-length for 5' chemistry

parent 6dd4d225
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -2603,8 +2603,12 @@ else
     fi
     fi
fi
fi


if [[ $verbose ]]; then
    echo $chemistry
fi

if [[ $chemistry == "SC5P"* ]] || [[ $chemistry == "five"* ]]; then
if [[ $chemistry == "SC5P"* ]] || [[ $chemistry == "five"* ]]; then
    r="--r1-length=NULL"
    r=""
else
else
    r="--r1-length=$totallength"
    r="--r1-length=$totallength"
fi
fi