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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
69095010 GT-AG 0 1.000000099473604e-05 1380 rna-XM_019849290.2 12947872 1 28569766 28571145 Elaeis guineensis 51953 ATG|GTAAGCAAAG...TATTCCTAAATG/GATTGTCTCATT...TGCAG|GAA 1 1 22.885
69095011 GT-AG 0 0.0001114668312567 92 rna-XM_019849290.2 12947872 2 28569551 28569642 Elaeis guineensis 51953 TCT|GTAAGTCTTT...GGGTTTTTATGT/TGGGTTTTTATG...AGTAG|TTG 1 1 25.76
69095012 GT-AG 0 1.4147054486426032e-05 106 rna-XM_019849290.2 12947872 3 28569317 28569422 Elaeis guineensis 51953 GTG|GTAATTATCT...ATCGACTTGACT/CATCTTCTAAAT...TACAG|GGG 0 1 28.752
69095013 GT-AG 0 0.0425602429029144 590 rna-XM_019849290.2 12947872 4 28568516 28569105 Elaeis guineensis 51953 TCG|GTATGCTCCA...TTTACTTGGATG/TTGTTATTCATT...AATAG|ACC 1 1 33.684
69095014 GT-AG 0 1.000000099473604e-05 142 rna-XM_019849290.2 12947872 5 28568136 28568277 Elaeis guineensis 51953 ATA|GTAAGTGCAT...ATCTTCTCAATT/TATCTTCTCAAT...GGTAG|TGG 2 1 39.247
69095015 GT-AG 0 0.0005644512287164 389 rna-XM_019849290.2 12947872 6 28567596 28567984 Elaeis guineensis 51953 TAT|GTAAGCATTG...CTCCTCTAAACC/CTAAACCTAATC...AATAG|GTC 0 1 42.777
69095016 TG-AA 0 1.000000099473604e-05 7430 rna-XM_019849290.2 12947872 7 28559821 28567250 Elaeis guineensis 51953 CGG|TGAATGAAGC...ATTCCATTCATG/ATTCCATTCATG...GATAA|TTG 0 1 50.842
69095017 GT-AG 0 1.000000099473604e-05 600 rna-XM_019849290.2 12947872 8 28558308 28558907 Elaeis guineensis 51953 GAG|GTAAGTTGAG...ATGATTTTAACT/TTTTCTCTCATT...TCCAG|GAA 1 1 72.183
69095018 GT-AG 0 0.0305446557927631 82 rna-XM_019849290.2 12947872 9 28558100 28558181 Elaeis guineensis 51953 CAT|GTATGTGTTG...TGTATCTTAAAC/TCAAATTTGACT...AGCAG|ATG 1 1 75.129
69095019 GT-AG 0 0.0021252071475711 119 rna-XM_019849290.2 12947872 10 28557835 28557953 Elaeis guineensis 51953 AAG|GTAACCCCAA...TAACTTTTAAAC/AAAATATTAACT...TAAAG|GGA 0 1 78.541
69095020 GT-AG 0 0.0001262580186661 601 rna-XM_019849290.2 12947872 11 28557023 28557623 Elaeis guineensis 51953 GCG|GTAAGCTCCA...TGTACTTTGCTC/ACTTGGCTAACT...AACAG|ATC 1 1 83.474
69095021 GT-AG 0 1.000000099473604e-05 160 rna-XM_019849290.2 12947872 12 28556625 28556784 Elaeis guineensis 51953 ATA|GTAAGTACAA...CATATTGTAATT/CATATTGTAATT...GGCAG|TGG 2 1 89.037
69095022 GT-AG 0 0.0002400273478591 133 rna-XM_019849290.2 12947872 13 28556341 28556473 Elaeis guineensis 51953 TGG|GTAAGCATTC...ACTCCTTTAAAC/TGTCATATAACT...GGCAG|GTG 0 1 92.567

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