-
Notifications
You must be signed in to change notification settings - Fork 23
write_gff
Martin Asser Hansen edited this page Oct 2, 2015
·
9 revisions
write_gff write features from the data stream in GFF format (Generic Feature Format ver 3).
Biopiece records containing the 9 keys required in the GFF format will be output:
- Q_ID
- SOURCE
- TYPE
- Q_BEG
- Q_END
- SCORE
- STRAND
- PHASE
- ATT
Moreover, the keys beginning with ATT_
will be compiled correctly as a list of tag=value pairs
that constitutes the attribute field.
STRAND: +
ATT_ID: cds00004
Q_ID: ctg123
SCORE: .
TYPE: CDS
Q_BEG: 3391
Q_END: 3902
PHASE: 0
ATT_PARENT: mRNA00003
SOURCE: .
---
For more about the GFF format:
http://www.sequenceontology.org/resources/gff3.html
... | write_gff [options]
[-? | --help] # Print full usage description.
[-x | --no_stream] # Do not emit records.
[-o <file> | --data_out=<file>] # Write result to file.
[-I <file!> | --stream_in=<file!>] # Read input from stream file - Default=STDIN
[-O <file> | --stream_out=<file>] # Write output to stream file - Default=STDOUT
[-Z | --compress] # Compress output using gzip.
[-v | --verbose] # Verbose output.
Martin Asser Hansen - Copyright (C) - All rights reserved.
October 2009
GNU General Public License version 2
http://www.gnu.org/copyleft/gpl.html
write_gff is part of the Biopieces framework.