forked from mengqvist/DNApy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation_feature_list_and_usage
More file actions
1859 lines (1429 loc) · 72.5 KB
/
Copy pathdocumentation_feature_list_and_usage
File metadata and controls
1859 lines (1429 loc) · 72.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Copied from NCBI (http://www.insdc.org/documents/feature_table.html#7.3.1)
7.2 Appendix II: Feature keys reference
The following has been organized according to the following format:
Feature Key the feature key name
Definition the definition of the key
Mandatory qualifiers qualifiers required with the key; if there are no
mandatory qualifiers, this field is omitted.
Optional qualifiers optional qualifiers associated with the key
Organism scope valid organisms for the key; if the scope is any
organism, this field is omitted.
Molecule scope valid molecule types; if the scope is any molecule
type, this field is omitted.
References citations of published reports, usually supporting the
feature consensus sequence
Comment comments and clarifications
Abbreviations:
accnum an entry primary accession number
<amino_acid> abbreviation for amino acid
<base_range> location descriptor for a simple range of bases
<bool> Boolean truth value. Valid values are yes and no
<integer> unsigned integer value
<location> general feature location descriptor
<modified_base> abbreviation for modified nucleotide base
[number] integer representing number of citation in entry's
reference list
<repeat_type> value indicating the organization of a repeated
sequence.
"text" any text or character string. Since the string is
delimited by double quotes, double quotes may only
appear as part of the string if they appear in pairs.
For example, the sentence:
The "label" qualifier is no longer legal.
would be formatted thus:
"The ""label"" qualifier is no longer legal."
Feature Key assembly_gap
Definition gap between two components of a genome or transcriptome assembly;
Mandatory qualifiers /estimated_length=unknown or <integer>
/gap_type="TYPE"
/linkage_evidence="TYPE" (Note: Mandatory only if the
/gap_type is "within scaffold" or "repeat within
scaffold".If there are multiple types of linkage_evidence
they will appear as multiple /linkage_evidence="TYPE"
qualifiers. For all other types of assembly_gap
features, use of the /linkage_evidence qualifier is
invalid.)
Mandatory qualifiers under assembly_gap feature for transcriptome
shotgun assemblies (TSA):
/estimated_length=<integer>
/gap_type="within scaffold" and /linkage_evidence="TYPE" where TYPE
can not be "unspecified";
Comment the location span of the assembly_gap feature for an unknown gap has
to be specified by the submitter; the specified gap length has to be
reasonable (less or = 1000) and will be indicated as "n"'s in sequence.
However, the value for the estimated_length of assembly_gap features
within a single (non-CON) transcriptome record must be an integer
and can not be "unknown";
Feature Key attenuator
Definition 1) region of DNA at which regulation of termination of
transcription occurs, which controls the expression
of some bacterial operons;
2) sequence segment located between the promoter and the
first structural gene that causes partial termination
of transcription
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/phenotype="text"
Organism scope prokaryotes
Molecule scope DNA
Feature Key C_region
Definition constant region of immunoglobulin light and heavy
chains, and T-cell receptor alpha, beta, and gamma
chains; includes one or more exons depending on the
particular chain
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Parent Key CDS
Organism scope eukaryotes
Feature Key CAAT_signal
Definition CAAT box; part of a conserved sequence located about 75
bp up-stream of the start point of eukaryotic
transcription units which may be involved in RNA
polymerase binding; consensus=GG(C or T)CAATCT [1,2].
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Organism scope eukaryotes and eukaryotic viruses
Molecule scope DNA
References [1] Efstratiadis, A. et al. Cell 21, 653-668 (1980)
[2] Nevins, J.R. "The pathway of eukaryotic mRNA formation"
Ann Rev Biochem 52, 441-466 (1983)
Feature Key CDS
Definition coding sequence; sequence of nucleotides that
corresponds with the sequence of amino acids in a
protein (location includes stop codon);
feature includes amino acid conceptual translation.
Optional qualifiers /allele="text"
/artificial_location="[artificial_location_value]"
/citation=[number]
/codon_start=<1 or 2 or 3>
/db_xref="<database>:<identifier>"
/EC_number="text"
/exception="[exception_value]"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/number=unquoted text (single token)
/old_locus_tag="text" (single token)
/operon="text"
/product="text"
/protein_id="<identifier>"
/pseudo
/pseudogene="TYPE"
/ribosomal_slippage
/standard_name="text"
/translation="text"
/transl_except=(pos:<base_range>,aa:<amino_acid>)
/transl_table =<integer>
/trans_splicing
Comment /codon_start has valid value of 1 or 2 or 3, indicating
the offset at which the first complete codon of a coding
feature can be found, relative to the first base of
that feature;
/transl_table defines the genetic code table used if
other than the universal genetic code table;
genetic code exceptions outside the range of the specified
tables is reported in /transl_except qualifier;
/protein_id consists of a stable ID portion (3+5 format
with 3 position letters and 5 numbers) plus a version
number after the decimal point; when the protein
sequence encoded by the CDS changes, only the version
number of the /protein_id value is incremented; the
stable part of the /protein_id remains unchanged and as
a result will permanently be associated with a given
protein;
Feature Key centromere
Definition region of biological interest identified as a centromere and
which has been experimentally characterized;
Optional qualifiers /citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/inference="[CATEGORY:]TYPE[(same species)][:EVIDENCE_BASIS]"
/note="text"
/standard_name="text"
Comment the centromere feature describes the interval of DNA
that corresponds to a region where chromatids are held
and a kinetochore is formed
Feature Key D-loop
Definition displacement loop; a region within mitochondrial DNA in
which a short stretch of RNA is paired with one strand
of DNA, displacing the original partner DNA strand in
this region; also used to describe the displacement of a
region of one strand of duplex DNA by a single stranded
invader in the reaction catalyzed by RecA protein
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Molecule scope DNA
Feature Key D_segment
Definition Diversity segment of immunoglobulin heavy chain, and
T-cell receptor beta chain;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Parent Key CDS
Organism scope eukaryotes
Feature Key enhancer
Definition a cis-acting sequence that increases the utilization of
(some) eukaryotic promoters, and can function in either
orientation and in any location (upstream or downstream)
relative to the promoter;
Optional qualifiers /allele="text"
/bound_moiety="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/standard_name="text"
Organism scope eukaryotes and eukaryotic viruses
Feature Key exon
Definition region of genome that codes for portion of spliced mRNA,
rRNA and tRNA; may contain 5'UTR, all CDSs and 3' UTR;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/EC_number="text"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/number=unquoted text (single token)
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
/trans_splicing
Feature Key gap
Definition gap in the sequence
Mandatory qualifiers /estimated_length=unknown or <integer>
Optional qualifiers /experiment="[CATEGORY:]text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/map="text"
/note="text"
Comment the location span of the gap feature for an unknown
gap is 100 bp, with the 100 bp indicated as 100 "n"'s in
the sequence. Where estimated length is indicated by
an integer, this is indicated by the same number of
"n"'s in the sequence.
No upper or lower limit is set on the size of the gap.
Feature Key GC_signal
Definition GC box; a conserved GC-rich region located upstream of
the start point of eukaryotic transcription units which
may occur in multiple copies or in either orientation;
consensus=GGGCGG;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Organism scope eukaryotes and eukaryotic viruses
Feature Key gene
Definition region of biological interest identified as a gene
and for which a name has been assigned;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/product="text"
/pseudo
/pseudogene="TYPE"
/phenotype="text"
/standard_name="text"
/trans_splicing
Comment the gene feature describes the interval of DNA that
corresponds to a genetic trait or phenotype; the feature is,
by definition, not strictly bound to it's positions at the
ends; it is meant to represent a region where the gene is
located.
Feature Key iDNA
Definition intervening DNA; DNA which is eliminated through any of
several kinds of recombination;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/number=unquoted text (single token)
/old_locus_tag="text" (single token)
/standard_name="text"
Molecule scope DNA
Comment e.g., in the somatic processing of immunoglobulin genes.
Feature Key intron
Definition a segment of DNA that is transcribed, but removed from
within the transcript by splicing together the sequences
(exons) on either side of it;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/number=unquoted text (single token)
/old_locus_tag="text" (single token)
/pseudo
/pseudogene="TYPE"
/standard_name="text"
/trans_splicing
Feature Key J_segment
Definition joining segment of immunoglobulin light and heavy
chains, and T-cell receptor alpha, beta, and gamma
chains;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Parent Key CDS
Organism scope eukaryotes
Feature Key LTR
Definition long terminal repeat, a sequence directly repeated at
both ends of a defined sequence, of the sort typically
found in retroviruses;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/standard_name="text"
Feature Key mat_peptide
Definition mature peptide or protein coding sequence; coding
sequence for the mature or final peptide or protein
product following post-translational modification; the
location does not include the stop codon (unlike the
corresponding CDS);
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/EC_number="text"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Feature Key misc_binding
Definition site in nucleic acid which covalently or non-covalently
binds another moiety that cannot be described by any
other binding key (primer_bind or protein_bind);
Mandatory qualifiers /bound_moiety="text"
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Comment note that the key RBS is used for ribosome binding sites
Feature Key misc_difference
Definition feature sequence is different from that presented
in the entry and cannot be described by any other
Difference key (unsure, old_sequence,
variation, or modified_base);
Optional qualifiers /allele="text"
/citation=[number]
/clone="text"
/compare=[accession-number.sequence-version]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/phenotype="text"
/replace="text"
/standard_name="text"
Comment the misc_difference feature key should be used to
describe variability that arises as a result of
genetic manipulation (e.g. site directed mutagenesis);
use /replace="" to annotate deletion, e.g.
misc_difference 412..433
/replace=""
Feature Key misc_feature
Definition region of biological interest which cannot be described
by any other feature key; a new or rare feature;
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/number=unquoted text (single token)
/old_locus_tag="text" (single token)
/phenotype="text"
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Comment this key should not be used when the need is merely to
mark a region in order to comment on it or to use it in
another feature's location
Feature Key misc_recomb
Definition site of any generalized, site-specific or replicative
recombination event where there is a breakage and
reunion of duplex DNA that cannot be described by other
recombination keys or qualifiers of source key
(/proviral);
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/standard_name="text"
Molecule scope DNA
Feature Key misc_RNA
Definition any transcript or RNA product that cannot be defined by
other RNA keys (prim_transcript, precursor_RNA, mRNA,
5'UTR, 3'UTR, exon, CDS, sig_peptide, transit_peptide,
mat_peptide, intron, polyA_site, ncRNA, rRNA and tRNA);
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
/trans_splicing
Feature Key misc_signal
Definition any region containing a signal controlling or altering
gene function or expression that cannot be described by
other signal keys (promoter, CAAT_signal, TATA_signal,
-35_signal, -10_signal, GC_signal, RBS, polyA_signal,
enhancer, attenuator, terminator, and rep_origin).
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/phenotype="text"
/standard_name="text"
Feature Key misc_structure
Definition any secondary or tertiary nucleotide structure or
conformation that cannot be described by other Structure
keys (stem_loop and D-loop);
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/standard_name="text"
Feature Key mobile_element
Definition region of genome containing mobile elements;
Mandatory qualifiers /mobile_element_type="<mobile_element_type>
[:<mobile_element_name>]"
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/rpt_family="text"
/rpt_type=<repeat_type>
/standard_name="text"
Feature Key modified_base
Definition the indicated nucleotide is a modified nucleotide and
should be substituted for by the indicated molecule
(given in the mod_base qualifier value)
Mandatory qualifiers /mod_base=<modified_base>
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/frequency="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Comment value is limited to the restricted vocabulary for
modified base abbreviations;
Feature Key mRNA
Definition messenger RNA; includes 5'untranslated region (5'UTR),
coding sequences (CDS, exon) and 3'untranslated region
(3'UTR);
Optional qualifiers /allele="text"
/artificial_location="[artificial_location_value]"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
/trans_splicing
Feature Key ncRNA
Definition a non-protein-coding gene, other than ribosomal RNA and
transfer RNA, the functional molecule of which is the RNA
transcript;
Mandatory qualifiers /ncRNA_class="TYPE"
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/operon="text"
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
/trans_splicing
Example /ncRNA_class="miRNA"
/ncRNA_class="siRNA"
/ncRNA_class="scRNA"
Comment the ncRNA feature is not used for ribosomal and transfer
RNA annotation, for which the rRNA and tRNA feature keys
should be used, respectively;
Feature Key N_region
Definition extra nucleotides inserted between rearranged
immunoglobulin segments.
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/product="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Parent Key CDS
Organism scope eukaryotes
Feature Key old_sequence
Definition the presented sequence revises a previous version of the
sequence at this location;
Mandatory qualifiers /citation=[number]
Or
/compare=[accession-number.sequence-version]
Optional qualifiers /allele="text"
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/replace="text"
Comment /replace="" is used to annotate deletion, e.g.
old_sequence 12..15
/replace=""
NOTE: This feature key is not valid in entries/records
created from 15-Oct-2007.
Feature Key operon
Definition region containing polycistronic transcript including a cluster of
genes that are under the control of the same regulatory sequences/promotor
and in the same biological pathway
Mandatory qualifiers /operon="text"
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/function="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/map="text"
/note="text"
/phenotype="text"
/pseudo
/pseudogene="TYPE"
/standard_name="text"
Feature Key oriT
Definition origin of transfer; region of a DNA molecule where transfer is
initiated during the process of conjugation or mobilization
Optional qualifiers /allele="text"
/bound_moiety="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/direction=value
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
/rpt_family="text"
/rpt_type=<repeat_type>
/rpt_unit_range=<base_range>
/rpt_unit_seq="text"
/standard_name="text"
Molecule Scope DNA
Comment rep_origin should be used for origins of replication;
/direction has legal values RIGHT, LEFT and BOTH, however only
RIGHT and LEFT are valid when used in conjunction with the oriT
feature;
origins of transfer can be present in the chromosome;
plasmids can contain multiple origins of transfer
Feature Key polyA_signal
Definition recognition region necessary for endonuclease cleavage
of an RNA transcript that is followed by polyadenylation;
consensus=AATAAA [1];
Optional qualifiers /allele="text"
/citation=[number]
/db_xref="<database>:<identifier>"
/experiment="[CATEGORY:]text"
/gene="text"
/gene_synonym="text"
/inference="[CATEGORY:]TYPE[ (same species)][:EVIDENCE_BASIS]"
/locus_tag="text" (single token)
/map="text"
/note="text"
/old_locus_tag="text" (single token)
Organism scope eukaryotes and eukaryotic viruses
References [1] Proudfoot, N. and Brownlee, G.G. Nature 263, 211-214
(1976)