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

✎ 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
99479374 GT-AG 0 1.000000099473604e-05 650 Joasc.01G021300.1.v1.1 18637074 1 2139742 2140391 Joinvillea ascendens 38723 CAG|GTGAGACCGA...TTGTTGTTGATC/TTGTTGTTGATC...TACAG|ATA 1 1 1.366
99479375 GT-AG 0 0.0099783050754963 2514 Joasc.01G021300.1.v1.1 18637074 2 2140512 2143025 Joinvillea ascendens 38723 CAA|GTATGTCTCT...TTTCCTTTATTG/TTTTCCTTTATT...TATAG|GTG 1 1 5.18
99479376 GT-AG 0 0.0001270891787587 623 Joasc.01G021300.1.v1.1 18637074 3 2143142 2143764 Joinvillea ascendens 38723 AAA|GTAAGCCGAT...TGTCCCTTGATT/CTTGTCCTCAAT...TTCAG|GCT 0 1 8.866
99479377 GT-AG 0 1.000000099473604e-05 135 Joasc.01G021300.1.v1.1 18637074 4 2143854 2143988 Joinvillea ascendens 38723 AGA|GTGAGTGCTT...TATGGTTTATTG/ATATGGTTTATT...TGCAG|GGA 2 1 11.694
99479378 GT-AG 0 0.005634245380578 751 Joasc.01G021300.1.v1.1 18637074 5 2144032 2144782 Joinvillea ascendens 38723 AAG|GTATGTTTAA...ATATCTTTATTA/CATATCTTTATT...TCCAG|GGT 0 1 13.06
99479379 GT-AG 0 6.648182195884652e-05 109 Joasc.01G021300.1.v1.1 18637074 6 2144941 2145049 Joinvillea ascendens 38723 AGA|GTATGAAGAA...TATATATTAACT/TATATATTAACT...TTCAG|TGT 2 1 18.081
99479380 GT-AG 0 0.0004117629817686 76 Joasc.01G021300.1.v1.1 18637074 7 2145199 2145274 Joinvillea ascendens 38723 AAG|GTATGATTCG...TATTTCTTTCCT/TGGTTTCTAACT...AACAG|TTT 1 1 22.815
99479381 GT-AG 0 0.0003374110100257 1025 Joasc.01G021300.1.v1.1 18637074 8 2145610 2146634 Joinvillea ascendens 38723 CAG|GTAACATGCT...ATGTCTTTAAAA/ATGTCTTTAAAA...TGCAG|GTT 0 1 33.46
99479382 GT-AG 0 1.000000099473604e-05 178 Joasc.01G021300.1.v1.1 18637074 9 2147019 2147196 Joinvillea ascendens 38723 AAG|GTGCATCTTT...TAGTCATTAATC/ATCATGTTAATT...TGCAG|GTT 0 1 45.663
99479383 GT-AG 0 1.000000099473604e-05 85 Joasc.01G021300.1.v1.1 18637074 10 2147889 2147973 Joinvillea ascendens 38723 AAG|GTATTACAAC...TTTTCTTTTGCT/TTCTTTTTTATG...TTTAG|GGA 2 1 67.652
99479384 GT-AG 0 0.0002895085502075 736 Joasc.01G021300.1.v1.1 18637074 11 2148554 2149289 Joinvillea ascendens 38723 CAG|GTATTGCTAA...CTAATCTTGACT/TTTTGCCTAATC...ACTAG|GCC 0 1 86.082
99479385 GT-AG 0 0.0031473450998273 405 Joasc.01G021300.1.v1.1 18637074 12 2149617 2150021 Joinvillea ascendens 38723 AAG|GTATTGTTCT...TGGGCTTTAATA/AGCGATCTAATT...AACAG|GCG 0 1 96.473

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