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

✎ 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
153300837 GT-AG 0 1.000000099473604e-05 108 TCONS_00000122.p1 27539167 1 623916 624023 Physarum polycephalum 5791 TCG|GTACTAAATT...CATTTTTTAACT...CACAG|TTT 0 1 5.096
153300838 GT-AG 0 0.0043886144664964 128 TCONS_00000122.p1 27539167 2 623697 623824 Physarum polycephalum 5791 GAG|GTATTACGTG...TTTAATGTGATT...TCCAG|CGC 1 1 11.536
153300839 GT-AG 0 1.000000099473604e-05 254 TCONS_00000122.p1 27539167 3 623343 623596 Physarum polycephalum 5791 GAG|GTAAATCCCC...GTAACTTTTTTT...AATAG|TAA 2 1 18.613
153300840 GT-AG 0 1.000000099473604e-05 130 TCONS_00000122.p1 27539167 4 623096 623225 Physarum polycephalum 5791 GAA|GTAAGTAGTA...TTTTTATTGTCT...AACAG|CTA 2 1 26.893
153300841 GT-AG 0 0.0278854324673679 244 TCONS_00000122.p1 27539167 5 622734 622977 Physarum polycephalum 5791 CTT|GTATGCCCCC...ATTGTGTTTATA...CTTAG|ATA 0 1 35.244
153300842 GT-AG 0 2.1611492325564377e-05 264 TCONS_00000122.p1 27539167 6 622376 622639 Physarum polycephalum 5791 CGC|GTACGTTTTT...TTCTCCTTCTCT...TTCAG|TAT 1 1 41.897
153300843 GT-AG 0 0.0139392188349986 53 TCONS_00000122.p1 27539167 7 622286 622338 Physarum polycephalum 5791 TAA|GTATGACCTA...TACCCTTTAATG...TGTAG|ATT 2 1 44.515
153300844 GT-AG 0 1.000000099473604e-05 584 TCONS_00000122.p1 27539167 8 621675 622258 Physarum polycephalum 5791 CAG|GTAATTAGTT...TTTTTAATGATA...TTTAG|TTT 2 1 46.426
153300845 GT-AG 0 0.0022177136406706 105 TCONS_00000122.p1 27539167 9 621487 621591 Physarum polycephalum 5791 CTA|GTATGTTCCC...TAACATTTTATT...TTTAG|TTT 1 1 52.3
153300846 GT-AG 0 0.0264947985566243 441 TCONS_00000122.p1 27539167 10 620922 621362 Physarum polycephalum 5791 CGA|GTATGTATTT...CACTCCCTAACG...TATAG|ATT 2 1 61.076
153300847 GT-AG 0 0.0098390427167111 261 TCONS_00000122.p1 27539167 11 620576 620836 Physarum polycephalum 5791 AAC|GTATGCAACT...TTTTATTTTATT...TACAG|TTT 0 1 67.091
153300848 GT-AG 0 1.000000099473604e-05 251 TCONS_00000122.p1 27539167 12 620294 620544 Physarum polycephalum 5791 AGA|GTGCATTGCG...TTCCCCTTTTCT...ATTAG|TCC 1 1 69.285
153300849 GT-AG 0 0.0283597301168922 120 TCONS_00000122.p1 27539167 13 620029 620148 Physarum polycephalum 5791 GCC|GTATGTCATT...AAGAAATTAACA...CACAG|ATG 2 1 79.547

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