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)

14 rows where transcript_id = 27539138

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
153300471 GT-AG 0 0.0102264793396248 58 TCONS_00000113.p1 27539138 1 536335 536392 Physarum polycephalum 5791 GGG|GTATGCTTTT...AATCTATTCACG...TTTAG|CAA 2 1 2.883
153300472 GT-AG 0 1.000000099473604e-05 51 TCONS_00000113.p1 27539138 2 536213 536263 Physarum polycephalum 5791 TGG|GTAAATATTC...AAATTTATGATT...TTTAG|CTG 1 1 4.648
153300473 GT-AG 0 0.0006987614176484 57 TCONS_00000113.p1 27539138 3 535911 535967 Physarum polycephalum 5791 GAG|GTATAAAATT...TATGTTTTCAAT...GATAG|CCT 0 1 10.738
153300474 GT-AG 0 0.0029734920330431 53 TCONS_00000113.p1 27539138 4 535748 535800 Physarum polycephalum 5791 CAA|GTATGTCCTC...TTTTTTGTGAGT...AAAAG|AGT 2 1 13.473
153300475 GT-AG 0 0.1170508657247921 65 TCONS_00000113.p1 27539138 5 535541 535605 Physarum polycephalum 5791 CGA|GTATGTCCCC...AGAGTTTTGACT...TCTAG|CCC 0 1 17.002
153300476 GT-AG 0 0.008590969129062 53 TCONS_00000113.p1 27539138 6 535344 535396 Physarum polycephalum 5791 CAG|GTATGCACTT...GTAATGTTGACC...GTTAG|GCT 0 1 20.582
153300477 GT-AG 0 0.0003874038185741 200 TCONS_00000113.p1 27539138 7 534785 534984 Physarum polycephalum 5791 CTT|GTCCCGTCTC...TTTTCTTTGCGC...TCTAG|TTG 2 1 29.505
153300478 GT-AG 0 1.000000099473604e-05 439 TCONS_00000113.p1 27539138 8 533921 534359 Physarum polycephalum 5791 ATG|GTTTTATATT...AAAAAAGGGACT...TATAG|AGG 1 1 40.07
153300479 GT-AG 0 0.0054322796366851 512 TCONS_00000113.p1 27539138 9 532833 533344 Physarum polycephalum 5791 AAG|GTAACCATTA...ATAATTTTGTAT...TACAG|CTC 1 1 54.387
153300480 GT-AG 0 0.0015934273007253 335 TCONS_00000113.p1 27539138 10 532442 532776 Physarum polycephalum 5791 AGG|GTATATATCT...AAAGTTGTGATT...CTCAG|GGA 0 1 55.779
153300481 GT-AG 0 0.0125994710302257 94 TCONS_00000113.p1 27539138 11 531568 531661 Physarum polycephalum 5791 CCT|GTCCCCTCTC...CCCTCCCTATCA...CGCAG|CAA 0 1 75.168
153300482 GT-AG 0 1.000000099473604e-05 424 TCONS_00000113.p1 27539138 12 530430 530853 Physarum polycephalum 5791 CGG|GTGCTCGCCG...CTAACTCTTACG...CTCAG|GGA 0 1 92.916
153300483 GT-AG 0 1.000000099473604e-05 286 TCONS_00000113.p1 27539138 13 530020 530305 Physarum polycephalum 5791 AGA|GTAAGGAATA...GTTGTTTTGTAA...GCCAG|CTC 1 1 95.998
153300484 GT-AG 1 99.59945412875985 227 TCONS_00000113.p1 27539138 14 529713 529939 Physarum polycephalum 5791 GAA|GTATCCTACC...TTTTCTTTAACG...GTAAG|GCA 0 1 97.987

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