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)

12 rows where transcript_id = 20642287

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
110536465 GT-AG 0 0.0034691734859426 650 rna-XM_029105398.1 20642287 1 32620003 32620652 Malus domestica 3750 GAG|GTATATATGT...TTGGGCTTAATG/CTTAATGTAATT...AGCAG|TTT 2 1 0.112
110536466 GT-AG 0 1.000000099473604e-05 1302 rna-XM_029105398.1 20642287 2 32618631 32619932 Malus domestica 3750 ATG|GTGAGATGAC...TATTTCTTTGTA/CCACTACTAATT...ATTAG|GTG 0 1 1.682
110536467 GT-AG 0 1.000000099473604e-05 97 rna-XM_029105398.1 20642287 3 32617952 32618048 Malus domestica 3750 AAG|GTGCAAACTC...CATCTCTTATCA/TTTGTACTGATT...TGCAG|GGA 0 1 14.738
110536468 GT-AG 0 1.000000099473604e-05 691 rna-XM_029105398.1 20642287 4 32616970 32617660 Malus domestica 3750 GAT|GTGAGTTCCC...GTTGCCTTTTCT/TTTGGGGTCATA...AACAG|GTA 0 1 21.265
110536469 GT-AG 0 6.618704248884398e-05 105 rna-XM_029105398.1 20642287 5 32616779 32616883 Malus domestica 3750 CAT|GTAATAGTCT...AATTTCTTAACA/TATGTTCTCATG...AGCAG|CTA 2 1 23.194
110536470 GT-AG 0 1.000000099473604e-05 94 rna-XM_029105398.1 20642287 6 32616590 32616683 Malus domestica 3750 AAG|GTAAAGCAGA...TGTTACTTAGCT/CTGTTACTTAGC...TAAAG|GTT 1 1 25.325
110536471 GT-AG 0 1.000000099473604e-05 173 rna-XM_029105398.1 20642287 7 32616126 32616298 Malus domestica 3750 AGG|GTGAGTAGTA...TTCATCGTATTT/CAACAGTTCATC...TGCAG|GTA 1 1 31.853
110536472 GT-AG 0 1.000000099473604e-05 174 rna-XM_029105398.1 20642287 8 32615448 32615621 Malus domestica 3750 CAG|GTAAATCTTT...ATAGTGTTAATA/ATAGTGTTAATA...TGCAG|GTG 1 1 43.158
110536473 GT-AG 0 0.0404853494765371 157 rna-XM_029105398.1 20642287 9 32614570 32614726 Malus domestica 3750 GCA|GTATGGTTCT...CTTATCTTATTT/GCTTATCTTATT...TGCAG|GGG 2 1 59.332
110536474 GT-AG 0 1.000000099473604e-05 97 rna-XM_029105398.1 20642287 10 32614242 32614338 Malus domestica 3750 TAG|GTAGTGAATT...TTTTCTTTATTT/TTTTTCTTTATT...TGCAG|TCG 2 1 64.513
110536475 GT-AG 0 1.000000099473604e-05 408 rna-XM_029105398.1 20642287 11 32613688 32614095 Malus domestica 3750 AAC|GTAAGGAATT...TTTTCTGTCATT/TTTTCTGTCATT...GGCAG|GTT 1 1 67.788
110536476 GT-AG 0 0.0044583428175153 775 rna-XM_029105398.1 20642287 12 32612524 32613298 Malus domestica 3750 CTG|GTAACTTTCT...ATATATTTACTA/TATATATTTACT...TGCAG|CAG 0 1 76.514

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