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

✎ 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
209850187 GT-AG 0 2.2908793769857167e-05 1137 rna-XM_028064870.1 38015518 1 2367356 2368492 Vigna unguiculata 3917 GAG|GTATTAAATA...ATCCTCTAGATA/TAAATGCTCATT...TTCAG|ATT 0 1 7.642
209850188 GT-AG 0 1.000000099473604e-05 680 rna-XM_028064870.1 38015518 2 2366595 2367274 Vigna unguiculata 3917 AGG|GTGACAAGTT...GCTCTATTATTT/ATTTTGTTCATG...TGCAG|ATT 0 1 9.748
209850189 GT-AG 0 0.0030360886338524 101 rna-XM_028064870.1 38015518 3 2366428 2366528 Vigna unguiculata 3917 AGG|GTATTTGATG...TTTTCTTTATTT/TTTTTCTTTATT...TGCAG|GTT 0 1 11.463
209850190 GT-AG 0 5.009946728319498e-05 654 rna-XM_028064870.1 38015518 4 2365620 2366273 Vigna unguiculata 3917 ATC|GTAAGTGTCT...TGTCTTTTATTT/TTGTCTTTTATT...AACAG|GCG 1 1 15.467
209850191 GT-AG 0 1.000000099473604e-05 1355 rna-XM_028064870.1 38015518 5 2363873 2365227 Vigna unguiculata 3917 AAG|GTGATTAATT...AATTTTTTATCT/CTTATATTCACA...TGCAG|ATG 0 1 25.656
209850192 GT-AG 0 86.89702448942715 464 rna-XM_028064870.1 38015518 6 2363282 2363745 Vigna unguiculata 3917 AAA|GTATCCTCCA...TATTCCTTCACT/CTCCTTCTAATT...TTCAG|ATA 1 1 28.958
209850193 GT-AG 0 1.196503549515216e-05 1951 rna-XM_028064870.1 38015518 7 2361186 2363136 Vigna unguiculata 3917 CCT|GTAAGTGCAG...AATTTCTTATAA/TAATTTCTTATA...TCCAG|GTA 2 1 32.727
209850194 GT-AG 0 1.000000099473604e-05 256 rna-XM_028064870.1 38015518 8 2360791 2361046 Vigna unguiculata 3917 AAG|GTTAGGTTTC...TTTTCTATAATC/TTTTCTATAATC...TGCAG|GAC 0 1 36.34
209850195 GT-AG 0 0.00342000098953 1459 rna-XM_028064870.1 38015518 9 2358213 2359671 Vigna unguiculata 3917 CAG|GTATTATTTT...CATTCCTTTACT/CTATAACTAATT...ATCAG|GAA 0 1 65.428
209850196 GT-AG 0 3.4873815950997635e-05 320 rna-XM_028064870.1 38015518 10 2357348 2357667 Vigna unguiculata 3917 TAA|GTTAATATTC...CTTTCCTTGAAA/CTTTCCTTGAAA...AACAG|GTA 2 1 79.594
209850197 GT-AG 0 1.6349981410778354e-05 253 rna-XM_028064870.1 38015518 11 2356822 2357074 Vigna unguiculata 3917 GAG|GTATGAAAGT...ACATCATTAATC/CTTTCTTTCATG...GCCAG|ATA 2 1 86.691
209860040 GT-AG 0 1.000000099473604e-05 744 rna-XM_028064870.1 38015518 12 2355795 2356538 Vigna unguiculata 3917 AAG|GTTAGTTTCA...TACTTTTTAAAA/ATAATTGTTACT...TGCAG|GTG   0 94.047

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