home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

12 rows where transcript_id = 15236009

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
82574002 GT-AG 0 1.000000099473604e-05 79242 rna-XM_041497369.1 15236009 1 23285169 23364410 Gigantopelta aegis 1735272 GAG|GTAAGGATTT...ATATTTTTAACA/CAATATCTCATT...GACAG|TTA 0 1 49.711
82574003 GT-AG 0 1.000000099473604e-05 2141 rna-XM_041497369.1 15236009 2 23281387 23283527 Gigantopelta aegis 1735272 AAG|GTAAGGTTGT...TCTTCATTAACA/ATTATCTTCATT...TTCAG|GCA 0 1 73.99
82574004 GT-AG 0 1.000000099473604e-05 21186 rna-XM_041497369.1 15236009 3 23260005 23281190 Gigantopelta aegis 1735272 TAG|GTGAGTTTAT...TTTTCCTTTGTT/TGTTGTTTAACT...TGAAG|GTG 1 1 76.89
82574005 GT-AG 0 1.000000099473604e-05 8146 rna-XM_041497369.1 15236009 4 23251677 23259822 Gigantopelta aegis 1735272 AGG|GTAAGTGACC...AATGTGTTATTT/AAATGTGTTATT...TGTAG|ATG 0 1 79.583
82574006 GT-AG 0 0.0002035354474669 935 rna-XM_041497369.1 15236009 5 23250594 23251528 Gigantopelta aegis 1735272 TAG|GTAAATTTCT...TATATTTTAATA/TATATTTTAATA...CCCAG|GTT 1 1 81.772
82574007 GT-AG 0 1.000000099473604e-05 1091 rna-XM_041497369.1 15236009 6 23249360 23250450 Gigantopelta aegis 1735272 GAG|GTCAGTGCAG...ATTATGTTAACT/ATTATGTTAACT...TTCAG|CGT 0 1 83.888
82574008 GT-AG 0 2.5350606057124987e-05 3009 rna-XM_041497369.1 15236009 7 23246174 23249182 Gigantopelta aegis 1735272 AGA|GTAAGTGTCT...ATATTTTTACAT/GATATTTTTACA...AACAG|ATG 0 1 86.507
82574009 GT-AG 0 1.000000099473604e-05 1874 rna-XM_041497369.1 15236009 8 23244117 23245990 Gigantopelta aegis 1735272 GAG|GTGAGTGATT...CATTTCATAATG/ATGTAAATAATT...CCCAG|GGC 0 1 89.214
82574010 GT-AG 0 1.000000099473604e-05 3577 rna-XM_041497369.1 15236009 9 23240360 23243936 Gigantopelta aegis 1735272 CAT|GTAAGTCAAA...TATATCATATAT/GTGTATATCATA...TGCAG|AGT 0 1 91.877
82574011 GT-AG 0 1.000000099473604e-05 436 rna-XM_041497369.1 15236009 10 23239819 23240254 Gigantopelta aegis 1735272 GAG|GTGAGTAGAT...ATTTATTTATTA/AATTTATTTATT...TGTAG|GCA 0 1 93.431
82574012 GT-AG 0 1.000000099473604e-05 944 rna-XM_041497369.1 15236009 11 23238617 23239560 Gigantopelta aegis 1735272 GAG|GTAGGTCATC...TGTACATTAATC/TATTATTTTAAC...TTCAG|GGT 0 1 97.248
82574013 GT-AG 0 1.000000099473604e-05 1393 rna-XM_041497369.1 15236009 12 23237095 23238487 Gigantopelta aegis 1735272 AAG|GTCAGACATT...TACATTTTGATA/TACATTTTGATA...GACAG|GTG 0 1 99.157

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 90.771ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)