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

✎ 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
153300704 GT-AG 0 0.0001193086494961 51 TCONS_00000056.p1 27539154 1 565468 565518 Physarum polycephalum 5791 AAG|GTATGTTGAC...CGAATGCTGAAA...GATAG|GTC 0 1 11.96
153300705 GT-AG 0 1.000000099473604e-05 123 TCONS_00000056.p1 27539154 2 565552 565674 Physarum polycephalum 5791 TTG|GTGTGTGCCA...TTTAAAATGACT...TTTAG|CAA 0 1 13.787
153300706 GT-AG 0 92.21441702922716 46 TCONS_00000056.p1 27539154 3 565750 565795 Physarum polycephalum 5791 CCT|GTATCTTACG...ATTTCTTTTATT...AGAAG|ATA 0 1 17.94
153300707 GT-AG 0 1.2611672353815555e-05 72 TCONS_00000056.p1 27539154 4 565881 565952 Physarum polycephalum 5791 ATG|GTAAGATATT...ATTTTGTTGATT...TACAG|ATT 1 1 22.647
153300708 GT-AG 0 0.0035108000022406 240 TCONS_00000056.p1 27539154 5 566057 566296 Physarum polycephalum 5791 ATG|GTATAATTCT...TTAACTTTATAT...TCTAG|GAG 0 1 28.405
153300709 GT-AG 0 0.0315980359174832 118 TCONS_00000056.p1 27539154 6 566393 566510 Physarum polycephalum 5791 ACT|GTATGAATCA...CTCCCCTCAATT...ATCAG|TAT 0 1 33.721
153300710 GT-AG 0 0.0014092292273092 176 TCONS_00000056.p1 27539154 7 566619 566794 Physarum polycephalum 5791 GAG|GTATGCTTTT...TTTTTTTTGTTT...GTTAG|GAT 0 1 39.701
153300711 GT-AG 0 7.918950375848725e-05 1341 TCONS_00000056.p1 27539154 8 566891 568231 Physarum polycephalum 5791 GCG|GTAGTACTTT...TATTTTTTTATT...TAAAG|GAT 0 1 45.017
153300712 GC-AG 0 1.000000099473604e-05 353 TCONS_00000056.p1 27539154 9 568418 568770 Physarum polycephalum 5791 ATG|GCATGTGCGC...ATACCCTTCTCT...TCCAG|CTC 0 1 55.316
153300713 GT-AG 0 0.0017432731526958 646 TCONS_00000056.p1 27539154 10 568946 569591 Physarum polycephalum 5791 AAG|GTATGAAAAA...TTAGGTTTGATT...AATAG|CAC 1 1 65.006
153300714 GT-AG 0 0.0164745555691703 633 TCONS_00000056.p1 27539154 11 569712 570344 Physarum polycephalum 5791 AAG|GTACCTCCCG...ATTTCTATGATG...CGGAG|ATT 1 1 71.65
153300715 GT-AG 0 0.0036599526959311 417 TCONS_00000056.p1 27539154 12 570453 570869 Physarum polycephalum 5791 AAG|GTAACCCCTC...CCTCCTCTACCC...ACCAG|CTC 1 1 77.63
153300716 GT-AG 0 0.0038291434490256 559 TCONS_00000056.p1 27539154 13 571085 571643 Physarum polycephalum 5791 ATG|GTATGCTTTC...ATTTATTTTATT...TTTAG|GTA 0 1 89.535

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