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)

11 rows where transcript_id = 14452867

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
77225162 GT-AG 0 1.0755465076286884e-05 146 rna-XM_028657809.1 14452867 1 257335 257480 Exaiptasia diaphana 2652724 AAG|GTAATCGATT...TAATTCTTCATT/TAATTCTTCATT...TCCAG|ACA 1 1 4.713
77225163 GT-AG 0 1.000000099473604e-05 160 rna-XM_028657809.1 14452867 2 256929 257088 Exaiptasia diaphana 2652724 AAG|GTGAGCTAGG...TGTTCCTCTTCT/TCAGGTATAAAG...TCCAG|AAA 1 1 13.055
77225164 TT-AC 0 1.000000099473604e-05 88 rna-XM_028657809.1 14452867 3 256568 256655 Exaiptasia diaphana 2652724 GTA|TTTCTTAAGT...CAATTTCTATAG/GACGAGTTCAAT...TCCAC|TTA 1 1 22.313
77225165 GT-AG 0 3.9271151993072495 92 rna-XM_028657809.1 14452867 4 256245 256336 Exaiptasia diaphana 2652724 AAG|GTATCCATTA...CTTTTCTTTGCA/ATGAACCTAACT...TGTAG|AAG 1 1 30.146
77225166 GT-AG 0 0.0001413264802084 582 rna-XM_028657809.1 14452867 6 255103 255684 Exaiptasia diaphana 2652724 TAG|GTAACATATC...TGAATGTTAATA/ACAATGTTGATC...TTCAG|AGA 1 1 46.423
77225167 GT-AG 0 1.000000099473604e-05 248 rna-XM_028657809.1 14452867 7 254633 254880 Exaiptasia diaphana 2652724 AAG|GTATGTGAAA...AATTCAATGACT/TGTAGACTAATT...TGCAG|ACG 1 1 53.95
77225168 GT-AG 0 0.049901327536495 842 rna-XM_028657809.1 14452867 8 253572 254413 Exaiptasia diaphana 2652724 AAA|GTATGTTGGA...TACATCTTATCT/TCTTATCTAAAC...TTCAG|ATT 1 1 61.377
77225169 GT-AG 0 1.000000099473604e-05 262 rna-XM_028657809.1 14452867 9 253082 253343 Exaiptasia diaphana 2652724 AAG|GTAATTACCT...GACTTTTTATCT/AGACTTTTTATC...TTCAG|CAT 1 1 69.108
77225170 GT-AG 0 0.0001470701417767 423 rna-XM_028657809.1 14452867 10 252422 252844 Exaiptasia diaphana 2652724 CAG|GTATTGACTA...TTGGTTTTAGCA/TGACAATTCATT...TCTAG|ACA 1 1 77.145
77225171 GT-AG 0 1.000000099473604e-05 1334 rna-XM_028657809.1 14452867 11 250869 252202 Exaiptasia diaphana 2652724 CAG|GTAGGTCTGG...AGTATTTTAATA/TAATAATTTATT...TCTAG|GAC 1 1 84.571
77225172 GT-AG 0 1.000000099473604e-05 230 rna-XM_028657809.1 14452867 12 250417 250646 Exaiptasia diaphana 2652724 GCG|GTGAGTGATG...GAAATATTAATT/TATTAATTCATT...AACAG|CGC 1 1 92.099

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