comparison bin/parallel-fastq @ 0:06f8460885ff

migrate from GitHub
author yutaka-saito
date Sun, 19 Apr 2015 20:51:13 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:06f8460885ff
1 #! /bin/sh
2
3 parallel --gnu --version > /dev/null || exit 1
4
5 parallel --gnu --minversion 20130222 > /dev/null ||
6 echo $(basename $0): warning: old version of parallel, might be slow 1>&2
7
8 # use a record size of 8 lines, so that paired sequences stay together:
9 exec parallel --gnu --pipe -L8 "$@"