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 = 36995213

✎ 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
204419248 GT-AG 0 5.325254157954368e-05 2494 rna-XM_038849539.1 36995213 1 1481192 1483685 Tripterygium wilfordii 458696 TCG|GTACGTGTTC...ACTGATTTGACT/ACTGATTTGACT...AACAG|GAG 0 1 6.063
204419249 GT-AG 0 0.0001551872919272 638 rna-XM_038849539.1 36995213 2 1483843 1484480 Tripterygium wilfordii 458696 AAG|GTTGCTGTCT...CGTTTTTTGAAA/CGTTTTTTGAAA...ATCAG|AGC 1 1 10.799
204419250 GT-AG 0 3.89638115821992e-05 581 rna-XM_038849539.1 36995213 3 1484546 1485126 Tripterygium wilfordii 458696 AAG|GTAAGCTTGA...GTGTCCTTGTGG/GTGGGGATAACA...TGCAG|CTA 0 1 12.76
204419251 GT-AG 0 4.260422126101421e-05 419 rna-XM_038849539.1 36995213 4 1485316 1485734 Tripterygium wilfordii 458696 GAG|GTAATTTAGT...TTTGTCTTACAT/ATTTGTCTTACA...TCCAG|AGA 0 1 18.462
204419252 GT-AG 0 0.0008144361641535 1329 rna-XM_038849539.1 36995213 5 1485885 1487213 Tripterygium wilfordii 458696 CAG|GTAGGCTTTT...GAATCCTTCACA/AGGTTTCTCATT...AACAG|GCA 0 1 22.986
204419253 GT-AG 0 1.000000099473604e-05 1753 rna-XM_038849539.1 36995213 6 1487610 1489362 Tripterygium wilfordii 458696 CAG|GTAGAGATCA...TGGATTTTAAAA/TGGATTTTAAAA...TACAG|GTA 0 1 34.932
204419254 GT-AG 0 0.0030966405988608 120 rna-XM_038849539.1 36995213 7 1489623 1489742 Tripterygium wilfordii 458696 CAG|GTATGCATTG...AATCGCTTATAC/TTATTGTTCAAT...TTCAG|TAT 2 1 42.775
204419255 GT-AG 0 1.400721824887984e-05 1229 rna-XM_038849539.1 36995213 8 1489965 1491193 Tripterygium wilfordii 458696 AGG|GTATGGGATG...TTGTTCATATTT/TTCATATTTATT...TGCAG|CTA 2 1 49.472
204419256 GT-AG 0 0.000250872778672 76 rna-XM_038849539.1 36995213 9 1491402 1491477 Tripterygium wilfordii 458696 CAT|GTAGTTACTG...ACTTCTTTATCT/CTTTATCTCATT...CTCAG|GTT 0 1 55.747
204419257 GT-AG 0 1.000000099473604e-05 801 rna-XM_038849539.1 36995213 10 1491632 1492432 Tripterygium wilfordii 458696 CTG|GTTTGTAACT...ACCACTTCAATA/ATAAAATTAATA...TGCAG|GAT 1 1 60.392
204419258 GT-AG 0 0.0001483190842516 546 rna-XM_038849539.1 36995213 11 1493036 1493581 Tripterygium wilfordii 458696 CAG|GTACGTTTAA...ATATCTTTGTTT/AATGTATTAATG...TGCAG|CTC 1 1 78.582

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