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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
109622395 GT-AG 0 0.0943285117009198 1789 rna-XM_042644042.1 20429264 2 3966442 3968230 Macadamia integrifolia 60698 CTG|GTATGCCTTT...GATTTCTTGAAT/TTGAATTTCATT...TCCAG|TTG 1 1 4.861
109622396 GT-AG 0 1.000000099473604e-05 1080 rna-XM_042644042.1 20429264 3 3968830 3969909 Macadamia integrifolia 60698 CAG|GTTCTGCTTC...GTAATGTTAACA/CATCTATTGACA...TATAG|GGG 0 1 16.46
109622397 GT-AG 0 6.310445858979897e-05 12713 rna-XM_042644042.1 20429264 4 3970043 3982755 Macadamia integrifolia 60698 CAG|GTAACATCAT...ATGCCATTGACC/ATGCCATTGACC...GACAG|GAA 1 1 19.036
109622398 GT-AG 0 0.0004566668379905 6739 rna-XM_042644042.1 20429264 5 3983973 3990711 Macadamia integrifolia 60698 AAA|GTATGTGTTA...AATTCATTGCTG/CGTTTGCTAATT...TTCAG|GTA 0 1 42.603
109622399 GT-AG 0 1.000000099473604e-05 143 rna-XM_042644042.1 20429264 6 3990820 3990962 Macadamia integrifolia 60698 TGG|GTGCGCCTTC...TACTTGTTAAAA/GCATTTTTCATT...TTCAG|GTT 0 1 44.694
109622400 GT-AG 0 0.0019361644460265 6959 rna-XM_042644042.1 20429264 7 3991134 3998092 Macadamia integrifolia 60698 GAG|GTATGTTTTT...GATTCATTCACT/TTGGGATTCATT...TGCAG|GGA 0 1 48.005
109622401 GT-AG 0 1.0529122638835218e-05 1918 rna-XM_042644042.1 20429264 8 3998336 4000253 Macadamia integrifolia 60698 GAG|GTACAAAGCT...TCATTCTTGATT/TTGATTTTAATT...CACAG|GTG 0 1 52.711
109622402 GT-AG 0 1.000000099473604e-05 4707 rna-XM_042644042.1 20429264 9 4000686 4005392 Macadamia integrifolia 60698 ATG|GTAAGCTAAT...AGCTTCTTGGTC/TTAAATTTGAGC...TGTAG|GAT 0 1 61.077
109622403 GT-AG 0 0.0027888017874674 764 rna-XM_042644042.1 20429264 10 4006233 4006996 Macadamia integrifolia 60698 TCG|GTATGGTTTG...TGATGTTTAACT/TTTGTATTGATG...TGCAG|GTT 0 1 77.343
109622404 GT-AG 0 1.000000099473604e-05 1825 rna-XM_042644042.1 20429264 11 4007195 4009019 Macadamia integrifolia 60698 ATG|GTGAGTATCT...ATTTTCTTCCCC/TCCCCTCTGATA...TACAG|GTG 0 1 81.177
109622405 GT-AG 0 1.000000099473604e-05 93 rna-XM_042644042.1 20429264 12 4009473 4009565 Macadamia integrifolia 60698 AAG|GTACAAATGA...GAAATTTTAATA/AACTCTCTCACT...TTCAG|GTT 0 1 89.95
109622406 GT-AG 0 1.000000099473604e-05 12449 rna-XM_042644042.1 20429264 13 4009800 4022248 Macadamia integrifolia 60698 CAG|GTAGTTAGAA...CCAATTTTAATG/ATTTTAATGACC...TACAG|GAG 0 1 94.481
109627055 GT-AG 0 0.0658444524837929 325 rna-XM_042644042.1 20429264 1 3966041 3966365 Macadamia integrifolia 60698 AAT|GTAAGCTTTC...CATTCCTTATCT/AACTTCCTCATT...GTCAG|ATT   0 4.609

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