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)

15 rows where transcript_id = 27539156

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
153300723 GT-AG 0 0.0010809046983845 53 TCONS_00000006.p1 27539156 1 113756 113808 Physarum polycephalum 5791 TCG|GTATGATATT...AAAACGTTTATT...TTTAG|AAC 0 1 2.926
153300724 GT-AG 0 0.001769371294178 52 TCONS_00000006.p1 27539156 2 113942 113993 Physarum polycephalum 5791 CTG|GTATGCAAGC...ATCTTGTTCATA...GATAG|ATG 1 1 10.557
153300725 GT-AG 0 0.0021675894292108 191 TCONS_00000006.p1 27539156 3 114043 114233 Physarum polycephalum 5791 AAA|GTATGTTATC...AGAAAATTTATA...TCTAG|TAC 2 1 13.368
153300726 GT-AG 0 0.7906534479183315 125 TCONS_00000006.p1 27539156 4 114337 114461 Physarum polycephalum 5791 ACG|GTACCCCCTC...TTTTAATTGAGA...TCAAG|GTA 0 1 19.277
153300727 GT-AG 1 99.71244079115664 329 TCONS_00000006.p1 27539156 5 114608 114936 Physarum polycephalum 5791 TTT|GTATCTCTAC...TTTTTTTTGACT...ACAAG|CAC 2 1 27.653
153300728 GT-AG 0 0.0027243720716231 436 TCONS_00000006.p1 27539156 6 115038 115473 Physarum polycephalum 5791 ACG|GTATATTATT...CTTATTTTTATT...AACAG|GAG 1 1 33.448
153300729 GT-AG 0 0.0010180232110437 164 TCONS_00000006.p1 27539156 7 115586 115749 Physarum polycephalum 5791 TGA|GTATGTGCAA...CAAAAAATGAAC...TGTAG|TTA 2 1 39.874
153300730 GT-AG 0 3.671685593656533e-05 344 TCONS_00000006.p1 27539156 8 115824 116167 Physarum polycephalum 5791 CTC|GTACGTTTAT...AATTCTTAGATC...ATTAG|GTG 1 1 44.119
153300731 GT-AG 0 92.56329446791815 68 TCONS_00000006.p1 27539156 9 116268 116335 Physarum polycephalum 5791 TGT|GTATCAAAGT...TGGATTTTTACA...TTTAG|ATA 2 1 49.857
153300732 GT-AG 0 1.000000099473604e-05 402 TCONS_00000006.p1 27539156 10 116463 116864 Physarum polycephalum 5791 CAG|GTTAACCCCC...GAAAATTTGAAT...TACAG|GGA 0 1 57.143
153300733 GT-AG 0 0.032408855268781 457 TCONS_00000006.p1 27539156 11 116963 117419 Physarum polycephalum 5791 ATG|GTATTTTACA...TTTTATTTTATT...TACAG|GGA 2 1 62.765
153300734 GT-AG 0 0.00581897137415 381 TCONS_00000006.p1 27539156 12 117570 117950 Physarum polycephalum 5791 CGG|GTATTTCCCC...TTTTCCTTTCCC...CACAG|GGC 2 1 71.371
153300735 GT-AG 0 0.0029844530305612 468 TCONS_00000006.p1 27539156 13 118048 118515 Physarum polycephalum 5791 GAG|GTATAATTCG...TTTTTTTTGCTT...CGCAG|AAT 0 1 76.936
153300736 GT-AG 0 1.000000099473604e-05 1100 TCONS_00000006.p1 27539156 14 118653 119752 Physarum polycephalum 5791 ACC|GTACGTGGGT...TTTTCTTTTATA...TTTAG|GAC 2 1 84.796
153300737 GT-AG 0 0.2669840063062279 640 TCONS_00000006.p1 27539156 15 119830 120469 Physarum polycephalum 5791 CTG|GTATATTTTT...TTTCCCTTATTT...TCAAG|ATG 1 1 89.214

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