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

✎ 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
152561293 GT-AG 0 1.000000099473604e-05 760 rna-XM_008787618.4 27391076 1 31258602 31259361 Phoenix dactylifera 42345 CGG|GTGAGTGTGA...GTTTCCTGAACC/CTGCTCCTCATG...TGCAG|TCC 0 1 2.455
152561294 GT-AG 0 1.000000099473604e-05 111 rna-XM_008787618.4 27391076 2 31259561 31259671 Phoenix dactylifera 42345 AAG|GTTTTATCTT...AATTGTTTAATG/TCTATCCTGACA...TGCAG|GTA 1 1 8.485
152561295 GT-AG 0 1.000000099473604e-05 77 rna-XM_008787618.4 27391076 3 31259908 31259984 Phoenix dactylifera 42345 GAG|GTGAGCTTTT...CAGGTCCTAACG/ATGTGATTAACA...TTTAG|GTT 0 1 15.636
152561296 GT-AG 0 1.000000099473604e-05 138 rna-XM_008787618.4 27391076 4 31260079 31260216 Phoenix dactylifera 42345 CTA|GTGAGTCGAT...TTTCTCTTACTG/GTTTCTCTTACT...TGCAG|CAC 1 1 18.485
152561297 GT-AG 0 0.000613652071819 2460 rna-XM_008787618.4 27391076 5 31260401 31262860 Phoenix dactylifera 42345 AAT|GTAAGCTAAC...ATATTCTTATTT/TATATTCTTATT...TTTAG|GTC 2 1 24.061
152561298 GT-AG 0 0.0712887194164701 95 rna-XM_008787618.4 27391076 6 31263128 31263222 Phoenix dactylifera 42345 GAG|GTATCATATA...TCATCTTTGTTT/TCTTTGTTTATA...CTCAG|GTA 2 1 32.152
152561299 GT-AG 0 0.0032620984535919 267 rna-XM_008787618.4 27391076 7 31263569 31263835 Phoenix dactylifera 42345 AAG|GTTTGCTTTA...ATATCTTTGTTT/AGTTATCTAATA...TGCAG|AGA 0 1 42.636
152561300 GT-AG 0 1.3409603316250514e-05 1333 rna-XM_008787618.4 27391076 8 31263974 31265306 Phoenix dactylifera 42345 CAG|GTAATTGTTA...TGATCTTTGATA/ATCATTTTGATC...AACAG|GTC 0 1 46.818
152561301 GT-AG 0 1.000000099473604e-05 130 rna-XM_008787618.4 27391076 9 31265433 31265562 Phoenix dactylifera 42345 TTG|GTAATGCATT...TTTGTTTTATTA/TTTTGTTTTATT...TCCAG|GTG 0 1 50.636
152561302 GT-AG 0 0.0193406981321352 117 rna-XM_008787618.4 27391076 10 31265776 31265892 Phoenix dactylifera 42345 GAT|GTATGTATTA...TCAATCTTGTTT/GTAAAATTAATC...ATCAG|ATC 0 1 57.091
152561303 GT-AG 0 1.000000099473604e-05 81 rna-XM_008787618.4 27391076 11 31266176 31266256 Phoenix dactylifera 42345 AAG|GTGACTTGAA...CTATCCGTACCT/GAGTAATTGATT...TACAG|GAC 1 1 65.667
152561304 GT-AG 0 0.909423556012006 81 rna-XM_008787618.4 27391076 12 31266454 31266534 Phoenix dactylifera 42345 GAG|GTATGCTTGG...TAATCCTTAATT/TTGTGTCTAATC...TGCAG|GTT 0 1 71.636
152561305 GT-AG 0 1.4663391361305478 300 rna-XM_008787618.4 27391076 13 31266886 31267185 Phoenix dactylifera 42345 GAG|GTATCCAACT...GATTCCTTTGTT/TACACACTAACT...TACAG|ATC 0 1 82.273

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