Hi Zhilianghu,
BEDOPS supports a relaxed/more-general form of the standard, strict BED format. The bedops, sort-bed, closest-features, starch, unstarch, and bedextract programs require only the first 3 fields defined in BED (chromosome, start-coord, end-coord). The bedmap program requires either 3, 4, or 5 fields depending upon the options selected. After the required minimum number of columns, all additional fields may be anything you desire. For cases of conversions between formats, such as VCF -> BED, all information is maintained (often in the extra fields) such that you could convert back to VCF if you really wanted to. In this way, our simple relaxation of the BED format can be used to losslessly represent the dozen or so other formats commonly found in our field. Most often, this can be performed using a small bit of awk code.
In the row you show, the 5th column represents something numerical which might prove useful for the various bedmap calculations, such as mean, stdev, trimmed-mean, etc.
If you want strict, standard BED format, then awk could also be used to do this, but you will be throwing out information that VCF gives which strict BED does not support.
Shane