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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, 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
109622380 GT-AG 0 1.000000099473604e-05 120 rna-XM_042647117.1 20429262 3 13508864 13508983 Macadamia integrifolia 60698 AAG|GTGCTGTCTT...ATTTTCTTTTTG/GAATTGCTGATT...GGTAG|GAA 2 1 8.564
109622381 GT-AG 0 0.0018469731541765 281 rna-XM_042647117.1 20429262 4 13509707 13509987 Macadamia integrifolia 60698 AAG|GTAGCCAATG...TAACCTTTGGAA/GTGTGACTAACC...TGCAG|TCA 2 1 21.655
109622382 GT-AG 0 1.000000099473604e-05 82 rna-XM_042647117.1 20429262 5 13510133 13510214 Macadamia integrifolia 60698 CAG|GTGACGCGGT...TTTTTTCTAATT/TTTTTTCTAATT...AACAG|GTG 0 1 24.28
109622383 GT-AG 0 3.0657632539027126e-05 4244 rna-XM_042647117.1 20429262 6 13510560 13514803 Macadamia integrifolia 60698 ACG|GTAAGTCTTA...ATAATTTTAATG/TCTGGACTGATT...TGCAG|ATT 0 1 30.527
109622384 GT-AG 0 1.000000099473604e-05 116 rna-XM_042647117.1 20429262 7 13515749 13515864 Macadamia integrifolia 60698 CAG|GTTCATAAAA...TAAACTTTTGTG/TTAATATTCACT...TACAG|AGG 0 1 47.637
109622385 GT-AG 0 5.584462237079786e-05 79 rna-XM_042647117.1 20429262 8 13516200 13516278 Macadamia integrifolia 60698 TGG|GTATGGACAT...TGTTTTTTACCA/CTGTTTTTTACC...TGCAG|TCT 2 1 53.703
109622386 GT-AG 0 0.0357644731396185 135 rna-XM_042647117.1 20429262 9 13516406 13516540 Macadamia integrifolia 60698 GAT|GTATGTTCCT...TTTTCCTTTTCA/TGTGAACTTATT...TGTAG|GTG 0 1 56.002
109622387 GT-AG 0 1.000000099473604e-05 2724 rna-XM_042647117.1 20429262 10 13516709 13519432 Macadamia integrifolia 60698 GAG|GTTCGTTACT...TTCTTTTTATAT/GTTCTTTTTATA...AACAG|GAA 0 1 59.044
109622388 GT-AG 0 0.0001992708465141 93 rna-XM_042647117.1 20429262 11 13521089 13521181 Macadamia integrifolia 60698 CAG|GTAAATTTTC...TATCCTTTGATT/ATCTTTTTTATT...TACAG|GTC 0 1 89.028
109622389 GT-AG 0 8.983738753411672e-05 87 rna-XM_042647117.1 20429262 12 13521449 13521535 Macadamia integrifolia 60698 ACT|GTGAGTTTTC...TATTTTTTAATA/TTTTTTCTGATA...GACAG|TCA 0 1 93.862
109627050 GT-AG 0 3.692233783061219e-05 1291 rna-XM_042647117.1 20429262 1 13507153 13508443 Macadamia integrifolia 60698 AGT|GTAAGTAAAT...TTTTTCTTACTT/GTTTTTCTTACT...ATCAG|GAG   0 3.476
109627051 GC-AG 0 1.000000099473604e-05 116 rna-XM_042647117.1 20429262 2 13508714 13508829 Macadamia integrifolia 60698 CAG|GCACTGATAG...ACACTCCTAACA/ACACTCCTAACA...TCCAG|GTG   0 8.365

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