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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
24707203 GT-AG 0 0.0001530938614062 852 Brame.01UG197900.1.v1.1 4721488 2 41672361 41673212 Brachypodium mexicanum 52141 CAG|GTATAATCAA...TTGATCTTACTA/GTTGATCTTACT...TGCAG|GTT 0 1 13.042
24707204 GT-AG 0 0.0071220254580149 798 Brame.01UG197900.1.v1.1 4721488 3 41671146 41671943 Brachypodium mexicanum 52141 AGG|GTATACAGAG...GTATTTTTACCT/TGTATTTTTACC...TTCAG|GCT 0 1 23.208
24707205 GT-AG 0 0.0011329617369224 960 Brame.01UG197900.1.v1.1 4721488 4 41669799 41670758 Brachypodium mexicanum 52141 GAG|GTATATCAAA...ACCACTTTAACT/TTTATTTTCATT...TGCAG|TTG 0 1 32.643
24707206 GT-AG 0 0.0039473749319687 364 Brame.01UG197900.1.v1.1 4721488 5 41669195 41669558 Brachypodium mexicanum 52141 GAG|GTATACCAAC...TGCATATTAACT/TTTTGGTTTATT...AGAAG|ATG 0 1 38.493
24707207 GT-AG 0 7.241707211185258e-05 8884 Brame.01UG197900.1.v1.1 4721488 6 41660125 41669008 Brachypodium mexicanum 52141 GAG|GTAGTTCTTA...TGTTTCTGAGCT/TCTACACTTATT...TGCAG|ATA 0 1 43.028
24707208 GT-AG 0 0.0006525586832573 2150 Brame.01UG197900.1.v1.1 4721488 7 41657615 41659764 Brachypodium mexicanum 52141 GAG|GTAATCTTTT...TGTGCATTAATT/TTTGTATTTATG...TGTAG|GTG 0 1 51.804
24707209 GT-AG 0 1.000000099473604e-05 454 Brame.01UG197900.1.v1.1 4721488 8 41656738 41657191 Brachypodium mexicanum 52141 CAG|GTGTGTCCTT...CTAATTTTAGTG/TAAGTACTAATT...TGTAG|TCA 0 1 62.116
24707210 GT-AG 0 3.91148957232334e-05 364 Brame.01UG197900.1.v1.1 4721488 9 41656173 41656536 Brachypodium mexicanum 52141 ACA|GTAAGTGGGA...TTTTTCTTGATT/TTTTTCTTGATT...ATCAG|GTT 0 1 67.016
24707211 GT-AG 0 1.000000099473604e-05 852 Brame.01UG197900.1.v1.1 4721488 10 41655072 41655923 Brachypodium mexicanum 52141 TTG|GTAATAACCT...TAAACATTATTT/TAGTAATTAACA...TGCAG|TTA 0 1 73.086
24707212 GC-AG 0 1.000000099473604e-05 192 Brame.01UG197900.1.v1.1 4721488 11 41654790 41654981 Brachypodium mexicanum 52141 AAG|GCAAGTTTTT...TTTGCATTGAAA/CTGATACTGACA...TTTAG|GTT 0 1 75.28
24707213 GT-AG 0 1.9588172168768143e-05 79 Brame.01UG197900.1.v1.1 4721488 12 41654666 41654744 Brachypodium mexicanum 52141 AAG|GTGACTATTC...GTTTCCATAATG/AATGTGCTTACT...TGCAG|GGA 0 1 76.377
24722003 GT-AG 0 1.000000099473604e-05 75 Brame.01UG197900.1.v1.1 4721488 1 41673497 41673571 Brachypodium mexicanum 52141 CAA|GTGCGGGTTC...CTGTTCTTAGGA/CCTGTTCTTAGG...TGCAG|GAT   0 7.045

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