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

✎ 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
204419583 GC-AG 0 0.0011392906252999 74 rna-XM_038843352.1 36995245 1 10275393 10275466 Tripterygium wilfordii 458696 GGT|GCTTCAGATG...TAGCCCTTCAAT/CTTCAATTCATA...TTTAG|TTA 2 1 2.383
204419584 GT-AG 0 0.0001693529438436 499 rna-XM_038843352.1 36995245 2 10274488 10274986 Tripterygium wilfordii 458696 CAG|GTAATTTTTA...TAATTTTTAAAC/TAATTTTTAAAC...GGCAG|GTT 0 1 16.614
204419585 GT-AG 0 0.0004988818246979 487 rna-XM_038843352.1 36995245 3 10273740 10274226 Tripterygium wilfordii 458696 GAG|GTACGCATAT...ATTCCATTAACT/CTAAACTTAATT...TACAG|GGA 0 1 25.762
204419586 AT-AG 0 1.351733460250761e-05 343 rna-XM_038843352.1 36995245 4 10273020 10273362 Tripterygium wilfordii 458696 ATG|ATTACTGGCA...TTGTTTTGAATA/CTTGTTTTGAAT...TATAG|CGT 2 1 38.977
204419587 GT-AG 0 3.115142115447307e-05 111 rna-XM_038843352.1 36995245 5 10272854 10272964 Tripterygium wilfordii 458696 CAA|GTAGCTGAAG...AGTGATTTCACA/AGTGATTTCACA...TGCAG|GTT 0 1 40.904
204419588 GT-AG 0 1.1167056061217915e-05 1251 rna-XM_038843352.1 36995245 6 10271303 10272553 Tripterygium wilfordii 458696 CTT|GTGAGCATGT...TTAGTCTTAGAA/ATTAGTCTTAGA...TACAG|AAT 0 1 51.42
204419589 GT-AG 0 1.000000099473604e-05 229 rna-XM_038843352.1 36995245 7 10271022 10271250 Tripterygium wilfordii 458696 GAA|GTGATTTTTG...CCTTTGTTGAAT/ATGGTTGTGATT...TTAAG|GGA 1 1 53.242
204419590 GT-AG 0 1.000000099473604e-05 1750 rna-XM_038843352.1 36995245 8 10269202 10270951 Tripterygium wilfordii 458696 CAG|GTAGGGACGG...TTTTCCCTAAAG/AATACATTAACA...GAAAG|AAA 2 1 55.696
204419591 GT-AG 0 0.0001674225158975 92 rna-XM_038843352.1 36995245 9 10268869 10268960 Tripterygium wilfordii 458696 CAG|GTATTTAATT...TTGTGATTAATC/TTGTGATTAATC...TGCAG|AGA 0 1 64.143
204419592 GT-AG 0 3.859915091968826e-05 281 rna-XM_038843352.1 36995245 10 10268198 10268478 Tripterygium wilfordii 458696 CAG|GTAACACTGG...ATATCATTGATG/TGTATTTTCAAC...TGCAG|GTT 0 1 77.813
204419593 GT-AG 0 0.1336780476911695 415 rna-XM_038843352.1 36995245 11 10267528 10267942 Tripterygium wilfordii 458696 GAG|GTACCCATAT...CTAAACTTAATT/CTAAACTTAATT...TGCAG|GGA 0 1 86.751

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