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

✎ 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
78945505 GT-AG 0 0.0026603804993622 327 rna-XM_011465923.1 14698698 1 1051148 1051474 Fragaria vesca 57918 CTG|GTAATCTTCA...TTGATTTTGATT/TTGATTTTGATT...TTCAG|TTG 1 1 0.265
78945506 GT-AG 0 2.751859411553618e-05 283 rna-XM_011465923.1 14698698 2 1052074 1052356 Fragaria vesca 57918 CAG|GTTTTACTTC...GTTCTCTTACCT/TGTTCTCTTACC...TGTAG|GGT 0 1 12.454
78945507 GT-AG 0 1.000000099473604e-05 159 rna-XM_011465923.1 14698698 3 1052490 1052648 Fragaria vesca 57918 CAG|GTAGTACTTA...TGTTTCTTGAAA/GCTTTTCTGATG...GACAG|GTA 1 1 15.161
78945508 GT-AG 0 0.0066753509051422 212 rna-XM_011465923.1 14698698 4 1053866 1054077 Fragaria vesca 57918 AAT|GTATGTTATT...TAGTGTTTATTT/TTTATTTTCATC...TGCAG|GTA 0 1 39.927
78945509 GT-AG 0 23.950787877518227 88 rna-XM_011465923.1 14698698 5 1054186 1054273 Fragaria vesca 57918 TGG|GTACCCTTTA...CAATTCTTACTT/TCAATTCTTACT...CTCAG|GTT 0 1 42.125
78945510 GT-AG 0 1.0281640852227391e-05 294 rna-XM_011465923.1 14698698 6 1054445 1054738 Fragaria vesca 57918 GAG|GTCTGTAATC...ACAGTTTTAATC/TAATCTTTCATT...GACAG|GGT 0 1 45.604
78945511 GT-AG 0 1.000000099473604e-05 222 rna-XM_011465923.1 14698698 7 1054982 1055203 Fragaria vesca 57918 GAG|GTAAAAGAAC...TTTTTTTTGTTT/TCTTTTGTGAAC...GGCAG|ATA 0 1 50.549
78945512 GT-AG 0 7.69445742638645e-05 169 rna-XM_011465923.1 14698698 8 1055633 1055801 Fragaria vesca 57918 ATG|GTATGATACT...GCTAGCTTGACG/ACCCTATTGACA...TGCAG|GAA 0 1 59.28
78945513 GT-AG 0 0.00706926867211 152 rna-XM_011465923.1 14698698 9 1056636 1056787 Fragaria vesca 57918 TCG|GTATTGTTTC...GTAGCATTAATC/GTTGTTATTATT...TATAG|GTT 0 1 76.252
78945514 GT-AG 0 1.000000099473604e-05 652 rna-XM_011465923.1 14698698 10 1056986 1057637 Fragaria vesca 57918 ACG|GTAAGTCTAT...ACCCTTTTACTT/GTCAACCTAACC...TACAG|GTG 0 1 80.281
78945515 GT-AG 0 1.000000099473604e-05 96 rna-XM_011465923.1 14698698 11 1058094 1058189 Fragaria vesca 57918 AGG|GTAAAAAGCA...GTCTCCTTATTT/TCCTTATTTATT...TCCAG|GTT 0 1 89.56
78945516 GT-AG 0 2.830009027544554e-05 162 rna-XM_011465923.1 14698698 12 1058421 1058582 Fragaria vesca 57918 CAG|GTACTTACTA...TTCATCTGAACT/TCAATTTTCATC...CACAG|GAA 0 1 94.261

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