답변:
"-필터"를 사용하십시오.
split --bytes=1024M --filter='gzip > $FILE.gz' /path/to/input /path/to/output
조건부를 사용하는 원 라이너는 가능한 한 가깝습니다.
cd /path/to/output && split --bytes=1024M /path/to/input/filename && gzip x*
gzip
경우에만 실행됩니다 split
때문에 조건의 성공 &&
사이도 cd
하고 split
하고 있는지 cd
입니다 성공, 너무 .. 참고 split
및 gzip
출력 대신 출력 디렉토리를 지정하는 기능을 갖는 현재 디렉토리로 이동합니다. 필요한 경우 디렉토리를 만들 수 있습니다.
mkdir -p /path/to/output && cd /path/to/output && split --bytes=1024M /path/to/input/filename && gzip x*
다시 정리하려면 :
gunzip /path/to/files/x* && cat /path/to/files/x* > /path/to/dest/filename
pigz로 즉시 압축하는 bash 함수
function splitreads(){
# add this function to your .bashrc or alike
# split large compressed read files into chunks of fixed size
# suffix is a three digit counter starting with 000
# take compressed input and compress output with pigz
# keeps the read-in-pair suffix in outputs
# requires pigz installed or modification to use gzip
usage="# splitreads <reads.fastq.gz> <reads per chunk; default 10000000>\n";
if [ $# -lt 1 ]; then
echo;
echo ${usage};
return;
fi;
# threads for pigz (adapt to your needs)
thr=8
input=$1
# extract prefix and read number in pair
# this code is adapted to paired reads
base=$(basename ${input%.f*.gz})
pref=$(basename ${input%_?.f*.gz})
readn="${base#"${base%%_*}"}"
# 10M reads (4 lines each)
binsize=$((${2:-10000000}*4))
# split in bins of ${binsize}
echo "# splitting ${input} in chuncks of $((${binsize}/4)) reads"
cmd="zcat ${input} \
| split \
-a 3 \
-d \
-l ${binsize} \
--numeric-suffixes \
--additional-suffix ${readn} \
--filter='pigz -p ${thr} > \$FILE.fq.gz' \
- ${pref}_"
echo "# ${cmd}"
eval ${cmd}
}
--line-bytes=1024M
.