Best way to approach DELLY BCFs #111
-
I know the BCF format is in binary and meant to be storage-saving as compared to VCFs. However, I don't know how to preview a BCF file in the terminal and hence don't know how to use it for anything. My first step is always converting the BCF file into VCF using I was wondering what the best way to approach BCF outputs of DELLY would be and what the design intention was in having it as the final output of the pipeline. If all users must convert it into VCF before analysis, it would seem natural for the pipeline to include such a step. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
@lydiayliu Regarding the pipeline design, it was inherited from the legacy Perl SV pipeline and we're considering using |
Beta Was this translation helpful? Give feedback.
@lydiayliu
bcftools/1.15.1
is available as an env module on the cluster. Please let me know if there is an issue with the module. Here is the usage:bcftools view [options] <in.vcf.gz>
and no need to convert the BCF to a new VCF file.Regarding the pipeline design, it was inherited from the legacy Perl SV pipeline and we're considering using
vcf.gz
instead of.bcf
as you suggested.