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

✎ 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
55680657 GT-AG 0 1.000000099473604e-05 615 rna-XM_023659925.1 10143788 1 10415704 10416318 Cucurbita pepo 3663 AAG|GTTCTGTTCT...TTTTTCTTGAGT/TGGGTGCTTATT...TGCAG|GTG 0 1 1.062
55680658 GT-AG 0 1.000000099473604e-05 257 rna-XM_023659925.1 10143788 2 10416850 10417106 Cucurbita pepo 3663 ATG|GTAATAACTT...ACTATTTCAATA/AATTTGTTCATT...GTCAG|GGT 0 1 5.648
55680659 GT-AG 0 0.003709492597659 85 rna-XM_023659925.1 10143788 3 10418271 10418355 Cucurbita pepo 3663 CAG|GTATGCTCAA...TTGTCATTGAAA/TAGTTTGTCATT...ATTAG|GTT 0 1 15.699
55680660 GT-AG 0 0.0015328677094975 1583 rna-XM_023659925.1 10143788 4 10418684 10420266 Cucurbita pepo 3663 AAG|GTATGTTGAT...GTTTCCTTCATA/CTTGCTTTCACT...CGCAG|CAT 1 1 18.532
55680661 GT-AG 0 0.0190392961794737 80 rna-XM_023659925.1 10143788 5 10420523 10420602 Cucurbita pepo 3663 TAG|GTATTTTATC...GAATCTTTATTC/TTTCTTTTTACT...TATAG|ACA 2 1 20.743
55680662 GT-AG 0 0.0032581445154558 129 rna-XM_023659925.1 10143788 6 10420820 10420948 Cucurbita pepo 3663 AAG|GTATGTTTCT...ATGTGCTTAAAC/TGATTTTTCATG...CTCAG|GTT 0 1 22.617
55680663 GT-AG 0 5.966475169978067e-05 114 rna-XM_023659925.1 10143788 7 10421293 10421406 Cucurbita pepo 3663 AGG|GTACATCCTT...TTTCTGTTATAT/TTTTCTGTTATA...TCCAG|GGA 2 1 25.587
55680664 GT-AG 0 1.000000099473604e-05 230 rna-XM_023659925.1 10143788 8 10421935 10422164 Cucurbita pepo 3663 AAG|GTTTGTGACA...CATGCTTTATAT/ATATGTTTAACC...TGCAG|AAT 2 1 30.147
55680665 GT-AG 0 1.000000099473604e-05 384 rna-XM_023659925.1 10143788 9 10423381 10423764 Cucurbita pepo 3663 CAG|GTGAGTATTA...TTCTCCTTTTCG/CTTTATGTCACG...TTTAG|GAT 0 1 40.648
55680666 GT-AG 0 4.5177528122636685e-05 998 rna-XM_023659925.1 10143788 10 10424113 10425110 Cucurbita pepo 3663 GAG|GTATGATAAA...TCCTTTTTATAC/AAACTTCTCATC...GGCAG|TTC 0 1 43.653
55680667 GT-AG 0 1.000000099473604e-05 365 rna-XM_023659925.1 10143788 11 10425349 10425713 Cucurbita pepo 3663 CAG|GTACGTAACT...CCCATCTTGAAT/TAATGTCTCAAT...TGTAG|CTT 1 1 45.708
55680668 GT-AG 0 0.0029550117126121 91 rna-XM_023659925.1 10143788 12 10430753 10430843 Cucurbita pepo 3663 AAG|GTAACATCTT...TTTTTCTTAAAT/CTTTTTCTTAAA...TTCAG|ATG 0 1 89.223
55680669 GT-AG 0 1.000000099473604e-05 325 rna-XM_023659925.1 10143788 13 10430987 10431311 Cucurbita pepo 3663 GAG|GTGAGTTTCA...TGTTGTTTGCCT/CTGTGTTTCATG...TTCAG|TGA 2 1 90.458

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