Format |
This optional parameter can be used to explicitly define the contents of each line in the BED-file
if a non-standard format is used. The format should be defined as a comma-separated list of column names.
The default format assumes the BED-file contains the following six columns: "CHROMOSOME, START, END, TYPE, SCORE, STRAND".
A line is allowed to contain fewer columns than the format specifies, in which case the missing columns are
simply ignored. If the file contains additional columns that the user wants to import, the names
of these columns must be included in the format specification. For example, if the file has an additional
column containing the property "GeneID" after the STRAND column, the format parameter should be set to
"CHROMOSOME, START, END, TYPE, SCORE, STRAND, GeneID". It is also possible to skip columns by replacing
the column name with an asterisk (*). For example, if a non-standard BED-file contains the columns
"CHROMOSOME, START, END, TYPE, SCORE, GeneID", and a user wants to import all of these properties except
for the SCORE property, the format parameter can be set to "CHROMOSOME, START, END, TYPE, *, GeneID" (with SCORE replaced by * in the format definition).
|