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)

11 rows where transcript_id = 4721484

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
24707164 GT-AG 0 1.5086158588990838e-05 132 Brame.01UG152700.1.v1.1 4721484 2 26596507 26596638 Brachypodium mexicanum 52141 TCC|GTAAGTAACT...GCGAATTTAACG/TGTTGTCTGACC...ACCAG|AGG 1 1 13.769
24707165 GT-AG 0 1.000000099473604e-05 112 Brame.01UG152700.1.v1.1 4721484 3 26596219 26596330 Brachypodium mexicanum 52141 AAG|GTTCACACAC...GGATCTGTAACA/TTTCCTGTCATG...TGCAG|GTT 0 1 18.128
24707166 GT-AG 0 1.000000099473604e-05 92 Brame.01UG152700.1.v1.1 4721484 4 26595905 26595996 Brachypodium mexicanum 52141 ACA|GTAAGCACAC...AATTCCCCACTA/ACAGAGTTGAAT...TGCAG|GTT 0 1 23.626
24707167 GT-AG 0 0.0007868514419148 1205 Brame.01UG152700.1.v1.1 4721484 5 26594461 26595665 Brachypodium mexicanum 52141 CCT|GTAAGTTTTC...AATCTCATATTT/TCATATTTCATT...ACCAG|AGC 2 1 29.544
24707168 GT-AG 0 1.000000099473604e-05 71 Brame.01UG152700.1.v1.1 4721484 6 26593864 26593934 Brachypodium mexicanum 52141 CAG|GTCAGATAGG...TAGTTCGTATTA/GCATGTTTCAGT...TTTAG|GTA 0 1 42.571
24707169 GT-AG 0 0.167843819037951 93 Brame.01UG152700.1.v1.1 4721484 7 26593470 26593562 Brachypodium mexicanum 52141 AGG|GTATGTTTCA...TATTCTTTAGTT/CTTTAGTTGATC...ACCAG|GTA 1 1 50.025
24707170 GT-AG 0 1.000000099473604e-05 84 Brame.01UG152700.1.v1.1 4721484 8 26592547 26592630 Brachypodium mexicanum 52141 AAG|GTTTGTCCTG...AAATTTTCAACT/CAAATTTTCAAC...TGCAG|ATG 0 1 70.802
24707171 GT-AG 0 1.000000099473604e-05 214 Brame.01UG152700.1.v1.1 4721484 9 26592066 26592279 Brachypodium mexicanum 52141 AGG|GTAAGTACTT...CAGTTCTCAAAA/GCAGTTCTCAAA...TGCAG|GTT 0 1 77.415
24707172 GT-AG 0 1.000000099473604e-05 91 Brame.01UG152700.1.v1.1 4721484 10 26591711 26591801 Brachypodium mexicanum 52141 AAG|GTACATGACC...ACAATCTGAATT/ATAGTGCTTACG...ACCAG|ACT 0 1 83.952
24707173 GT-AG 0 1.000000099473604e-05 115 Brame.01UG152700.1.v1.1 4721484 11 26591302 26591416 Brachypodium mexicanum 52141 CAG|GTTAGACTCC...TTAACCTGAACA/TGTGTGTTAACC...TGTAG|GGG 0 1 91.233
24722002 GT-AG 0 1.2743945213379685e-05 268 Brame.01UG152700.1.v1.1 4721484 1 26597191 26597458 Brachypodium mexicanum 52141 TCG|GTGTGTTGTT...TGAATCTGATTA/GTGAATCTGATT...GGCAG|GTG   0 4.755

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 78.173ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)