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

✎ 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
108234348 GT-AG 0 1.000000099473604e-05 780 rna-XM_019606913.1 20211434 1 33446565 33447344 Lupinus angustifolius 3871 TCT|GTAAGATATT...AGAGATTTGAAA/AGAGATTTGAAA...TTCAG|CTG 1 1 0.304
108234349 GT-AG 0 0.0001717892584115 4914 rna-XM_019606913.1 20211434 2 33448880 33453793 Lupinus angustifolius 3871 AAG|GTAAATTCTT...TCTCTTTTAACT/TCTCTTTTAACT...TGCAG|ATC 0 1 36.16
108234350 GT-AG 0 1.000000099473604e-05 211 rna-XM_019606913.1 20211434 3 33454610 33454820 Lupinus angustifolius 3871 AAT|GTCAGTATAA...TTCGTCTTGATT/TTCGTCTTGATT...TGTAG|GCA 0 1 55.221
108234351 GT-AG 0 1.000000099473604e-05 334 rna-XM_019606913.1 20211434 4 33454982 33455315 Lupinus angustifolius 3871 TTG|GTAAGATGAC...TTGCTCTCATCA/TTTGCTCTCATC...TATAG|GTA 2 1 58.982
108234352 GT-AG 0 1.000000099473604e-05 331 rna-XM_019606913.1 20211434 5 33455455 33455785 Lupinus angustifolius 3871 CTG|GTAAATAAGA...TAAGTTTTATTT/TTAAGTTTTATT...TACAG|GTT 0 1 62.228
108234353 GT-AG 0 0.0002050608155251 1026 rna-XM_019606913.1 20211434 6 33455870 33456895 Lupinus angustifolius 3871 TTT|GTACGTGTCA...GTGTTTCTACCA/TGGTTTCTGAAG...ATTAG|GTG 0 1 64.191
108234354 GT-AG 0 0.0112109844620055 112 rna-XM_019606913.1 20211434 7 33457172 33457283 Lupinus angustifolius 3871 CAA|GTATGTAACA...TTCCTCTTGACC/AGCTTTCTAACA...TGCAG|AGG 0 1 70.638
108234355 GT-AG 0 1.000000099473604e-05 454 rna-XM_019606913.1 20211434 8 33457416 33457869 Lupinus angustifolius 3871 CAG|GTCTGGATAT...ATTCCATTAATT/CATTAATTTATT...TGCAG|GCA 0 1 73.721
108234356 GT-AG 0 0.0005450859774769 282 rna-XM_019606913.1 20211434 9 33458070 33458351 Lupinus angustifolius 3871 CTT|GTAAGTTCTG...TTTCTTTTAAAT/TTTCTTTTAAAT...CTCAG|GTC 2 1 78.393
108234357 GT-AG 0 1.000000099473604e-05 219 rna-XM_019606913.1 20211434 10 33458557 33458775 Lupinus angustifolius 3871 TGG|GTTAGTTGCT...TTTTCTTTGACA/TTTTCTTTGACA...ATCAG|GAC 0 1 83.181
108243578 GT-AG 0 1.000000099473604e-05 532 rna-XM_019606913.1 20211434 11 33459121 33459652 Lupinus angustifolius 3871 CCA|GTAAGTGACT...AGTTCATTGATC/TATGAGTTCATT...GACAG|TAG   0 91.24

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