I have been using the latest version of convert2bed (from bedops) to convert VCF format to BED. But have been getting this error:
convert2bed -i vcf </files/stuff.vcf> /files/stuff.bed
BED row length exceeds capacity at line 1 in -.
Check that you have unix newlines (cat -A) or increase TOKENS_MAX_LENGTH in BEDOPS.Constants.hpp and recompile BEDOPS.
When I simply use cat -A:
cat -A /files/stuff.vcf | convert2bed -i vcf /files/stuff.bed
Segmentation fault
Any help would be greatly appreciated!