Entering edit mode
11.2 years ago
Click downvote
▴
720
I'm bgzipping some huge vcf files on a server and wondering whether I'm doing something wrong as it is taking a long time (file size increasing with a 100kb every few seconds.)
The command I'm running is
tabix -h vcfs/ALL.chrX.phase1_release_v3.20101123.snps_indels_svs.genotypes.vcf.gz X | vcf-subset -c population_files/CEU_panel | bgzip > population_files/CEU_X.vcf.gz
head /proc/meminfo
gives:
MemTotal: 140567216 kB
MemFree: 2109700 kB
Buffers: 295408 kB
Cached: 106374448 kB
SwapCached: 991620 kB
Active: 62698940 kB
Inactive: 71434832 kB
Active(anon): 55538428 kB
Inactive(anon): 35691912 kB
Active(file): 7160512 kB
(Dunno if this is relevant)
Thanks.