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)

13 rows where transcript_id = 20211483

✎ 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
108234948 GT-AG 0 0.0179874161420984 916 rna-XM_019609788.1 20211483 1 35533457 35534372 Lupinus angustifolius 3871 AAG|GTATTTTTAT...GATTCCTTTATG/TTATTTGTGATT...CTTAG|AGA 0 1 9.69
108234949 GT-AG 0 1.000000099473604e-05 1914 rna-XM_019609788.1 20211483 2 35534483 35536396 Lupinus angustifolius 3871 TAG|GTTTGTCATT...TCATACTTATTT/ATTTGATTGATT...CTCAG|GTA 2 1 13.243
108234950 GT-AG 0 1.3048989648500698e-05 104 rna-XM_019609788.1 20211483 3 35536460 35536563 Lupinus angustifolius 3871 CAA|GTGAGTTTTC...TTTTCTTTACCT/TTTTTCTTTACC...GAAAG|GGA 2 1 15.278
108234951 GT-AG 0 1.000000099473604e-05 508 rna-XM_019609788.1 20211483 4 35536754 35537261 Lupinus angustifolius 3871 AGG|GTAAATTAGT...ATTTCCCTGGTA/GTTCTACTAATT...TCCAG|GGT 0 1 21.415
108234952 GT-AG 0 1.000000099473604e-05 91 rna-XM_019609788.1 20211483 5 35537367 35537457 Lupinus angustifolius 3871 GCA|GTGAGTTTGA...GTTTTCTTGTAC/AAGTTTCTCATG...ATTAG|GTA 0 1 24.806
108234953 GT-AG 0 1.0310047734076444 120 rna-XM_019609788.1 20211483 6 35537589 35537708 Lupinus angustifolius 3871 GGA|GTATGTTTTC...AAAATTTTAATT/AAAATTTTAATT...TCCAG|CTA 2 1 29.037
108234954 GT-AG 0 2.622759704520765e-05 1645 rna-XM_019609788.1 20211483 7 35538277 35539921 Lupinus angustifolius 3871 CAG|GTAGATATTA...GAAATTTTGAAC/TTTGAACTCACC...AACAG|CTT 0 1 47.384
108234955 GT-AG 0 1.8655251992813823e-05 152 rna-XM_019609788.1 20211483 8 35539988 35540139 Lupinus angustifolius 3871 TCG|GTATGAGTGT...GTTCTCTCATTT/GGTTCTCTCATT...TTCAG|GTC 0 1 49.516
108234956 GT-AG 0 2.2732768583914027e-05 286 rna-XM_019609788.1 20211483 9 35540217 35540502 Lupinus angustifolius 3871 GAG|GTGACTTACT...AATTCCTTTTCA/TTCCTTTTCATT...TGCAG|AAT 2 1 52.003
108234957 GT-AG 0 0.0004600239098083 1098 rna-XM_019609788.1 20211483 10 35540785 35541882 Lupinus angustifolius 3871 CTG|GTATTGTCTA...GTATTTATATCT/TGTGTATTTATA...ATTAG|GTG 2 1 61.111
108234958 GT-AG 0 0.0015771522326901 84 rna-XM_019609788.1 20211483 11 35542208 35542291 Lupinus angustifolius 3871 CAG|GTATACCACA...TAGTTGTTATTA/ATAGTTGTTATT...TGCAG|GGT 0 1 71.609
108234959 GT-AG 0 0.0002175817291577 523 rna-XM_019609788.1 20211483 12 35542442 35542964 Lupinus angustifolius 3871 CAG|GTTTTCTAAC...TTTTCTTTCAAT/TTTTCTTTCAAT...TACAG|GAA 0 1 76.453
108234960 GT-AG 0 1.000000099473604e-05 640 rna-XM_019609788.1 20211483 13 35543505 35544144 Lupinus angustifolius 3871 CAG|GTGAGGAAAT...AATTTTTTAATG/GTATTTCTTACA...CTCAG|GAA 0 1 93.895

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