Class: GFFAnnotation
Retrieve unique feature names from GFFAnnotation
object
Features = getFeatureNames(AnnotObj)
returns Features
= getFeatureNames(AnnotObj
)Features
,
a cell array of character vectors specifying the unique feature names
associated with annotations in AnnotObj
.
|
Object of the |
|
Cell array of character vectors specifying the unique feature
names associated with annotations in |
Construct a GFFAnnotation
object from a
GFF-formatted file that is provided with Bioinformatics Toolbox™,
and then retrieve the feature names from the annotation object:
% Construct a GFFAnnotation object from a GFF file GFFAnnotObj = GFFAnnotation('tair8_1.gff'); % Retrieve feature names for the annotation object featureNames = getFeatureNames(GFFAnnotObj)
featureNames = 'CDS' 'exon' 'five_prime_UTR' 'gene' 'mRNA' 'miRNA' 'ncRNA' 'protein' 'pseudogene' 'pseudogenic_exon' 'pseudogenic_transcript' 'tRNA' 'three_prime_UTR' 'transposable_element_gene'