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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
186783456 GT-AG 0 0.0001601202696864 75 rna-XM_015202054.2 33342839 1 101816862 101816936 Solanum pennellii 28526 CAG|GTTTTTCTTC...GGTATTTTACTT/CGGTATTTTACT...GCCAG|ATT 0 1 3.123
186783457 GT-AG 0 1.000000099473604e-05 2206 rna-XM_015202054.2 33342839 2 101814571 101816776 Solanum pennellii 28526 CAG|GTAAGTGTGC...CTGTCCTTAGTC/TATTTTTTGAAA...TGCAG|AGC 1 1 5.134
186783458 GT-AG 0 0.0003839264992329 88 rna-XM_015202054.2 33342839 3 101814443 101814530 Solanum pennellii 28526 GAG|GTATTGATGC...TGTTTCTTACTA/TTGTTTCTTACT...TCAAG|CGT 2 1 6.08
186783459 GC-AG 0 1.000000099473604e-05 421 rna-XM_015202054.2 33342839 4 101813773 101814193 Solanum pennellii 28526 ATG|GCAAGTCTTA...ATTATCTTAATT/ATTATCTTAATT...TGCAG|CAT 2 1 11.971
186783460 GT-AG 0 0.0032388491332858 100 rna-XM_015202054.2 33342839 5 101813573 101813672 Solanum pennellii 28526 AAG|GTCTCATTTT...ATAACTCTACCA/TTCATTGTCAAA...TGCAG|CTT 0 1 14.336
186783461 GT-AG 0 0.0001805129615959 1553 rna-XM_015202054.2 33342839 6 101811945 101813497 Solanum pennellii 28526 GAG|GTACTTGTTA...ATTTCCTTTGTT/TGATATCTCATT...TGCAG|TCT 0 1 16.111
186783462 GT-AG 0 44.08457264824031 657 rna-XM_015202054.2 33342839 7 101811189 101811845 Solanum pennellii 28526 AAA|GTATCTTCTT...CTTTTCTTGACC/CTTTTCTTGACC...TATAG|GCT 0 1 18.453
186783463 GT-AG 0 2.4377974797530883e-05 82 rna-XM_015202054.2 33342839 8 101810990 101811071 Solanum pennellii 28526 AAG|GTATGGTACT...ATAATATTAATT/ATAATATTAATT...TGCAG|GAA 0 1 21.221
186783464 GT-AG 0 1.4357844509773398e-05 101 rna-XM_015202054.2 33342839 9 101810773 101810873 Solanum pennellii 28526 ATG|GTAAGCATAC...TAGTCTTTGCTT/CAGAACGTGATA...TGCAG|GGC 2 1 23.965
186783465 GT-AG 0 1.000000099473604e-05 420 rna-XM_015202054.2 33342839 10 101810253 101810672 Solanum pennellii 28526 AAG|GTGAAACTAC...TTTTTTTTATGT/ATTTTTTTTATG...TGTAG|GTT 0 1 26.331
186783466 GT-AG 0 1.000000099473604e-05 166 rna-XM_015202054.2 33342839 11 101809728 101809893 Solanum pennellii 28526 GAA|GTAAGTGGTT...CTTCTATTATCC/TCCTGTTTTACA...TGCAG|GTA 2 1 34.824
186783467 GT-AG 0 0.0009253053574085 868 rna-XM_015202054.2 33342839 12 101807113 101807980 Solanum pennellii 28526 AGT|GTATGTCACT...ATTTCCTCATGT/AATTTCCTCATG...TGCAG|AAC 0 1 76.153
186783468 GT-AG 0 5.507932669439649e-05 135 rna-XM_015202054.2 33342839 13 101806840 101806974 Solanum pennellii 28526 CAT|GTAAAATATC...TATCTCTTGATT/TATGGTCTCATC...TTCAG|GCT 0 1 79.418

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