File: parallel-fastq

package info (click to toggle)
last-align 830-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,240 kB
  • ctags: 3,201
  • sloc: cpp: 40,808; python: 1,910; ansic: 1,188; makefile: 385; sh: 232
file content (9 lines) | stat: -rwxr-xr-x 295 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#! /bin/sh

parallel --gnu --version > /dev/null || exit 1

parallel --gnu --minversion 20130222 > /dev/null ||
echo $(basename $0): warning: old version of parallel, might be slow 1>&2

# use a record size of 8 lines, so that paired sequences stay together:
exec parallel --gnu --pipe -L8 "$@"