Skip to content

Commit

Permalink
Merge pull request #285 from xaviml/patch-1
Browse files Browse the repository at this point in the history
cat / head change in zUMIs.sh
  • Loading branch information
cziegenhain committed Sep 18, 2021
2 parents 60f7965 + e0a12c3 commit 3a786f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zUMIs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ if [[ "${whichStage}" == "Filtering" ]] ; then
pref=$(basename ${f} .gz)
l=$(ls ${tmpMerge}${pref}* | sed "s|${tmpMerge}${pref}||" | sed 's/.gz//')
else
cat ${f} | head -n 4000000 > ${tmpMerge}/${project}.1mio.check.fq
head -n 4000000 ${f} > ${tmpMerge}/${project}.1mio.check.fq
smallsize=$(stat --printf="%s" ${tmpMerge}/${project}.1mio.check.fq)
rm ${tmpMerge}/${project}.1mio.check.fq
nreads=$(expr ${fullsize} \* 1000000 / ${smallsize})
Expand Down

0 comments on commit 3a786f8

Please sign in to comment.