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)

12 rows where transcript_id = 9867450

✎ 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
54043112 GT-AG 0 1.403659671234278e-05 40876 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 1 2078695 2119570 Crocuta crocuta 9678 TTG|GTAAGTTTGG...TTGTTCTTTTTT/AACATACTCATT...TGTAG|GAA 1 1 6.159
54043113 GT-AG 0 1.000000099473604e-05 4785 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 2 2119729 2124513 Crocuta crocuta 9678 CGG|GTAAGTGTTT...CTATTCATAGTT/CTTCTATTCATA...TTCAG|ATC 0 1 12.24
54043114 GT-AG 0 1.000000099473604e-05 1933 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 3 2124614 2126546 Crocuta crocuta 9678 CAG|GTAAAGAAAA...TTTTTTTTACCA/TTTTTTTTTACC...TACAG|GGG 1 1 16.089
54043115 GT-AG 0 2.8192039790242163e-05 974 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 4 2126735 2127708 Crocuta crocuta 9678 GAA|GTAAGTGTTG...ATAACTTTAATG/ATACTATTAAAT...TTTAG|GGT 0 1 23.326
54043116 GT-AG 0 1.000000099473604e-05 1596 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 5 2127832 2129427 Crocuta crocuta 9678 GAG|GTAAGTCATG...GCTGTTTTAATC/GCTGTTTTAATC...TGTAG|ATT 0 1 28.06
54043117 GT-AG 0 1.000000099473604e-05 2683 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 6 2129635 2132317 Crocuta crocuta 9678 GAG|GTAAGTGTCT...AATATCTGAAAT/TTTGAATTTATA...CTTAG|GTG 0 1 36.028
54043118 GT-AG 0 1.000000099473604e-05 895 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 7 2132399 2133293 Crocuta crocuta 9678 GAG|GTAGGTAAAA...AACATCTTAAAA/CTAGTATTAATT...TTTAG|GTT 0 1 39.145
54043119 GT-AG 0 1.000000099473604e-05 3119 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 8 2133840 2136958 Crocuta crocuta 9678 AAG|GTAAGTGCTG...GTCCCCTTAAGC/TAGAGGATCACT...CACAG|GTT 0 1 60.162
54043120 GT-AG 0 0.0005203100259261 3092 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 9 2137146 2140237 Crocuta crocuta 9678 TAG|GTAACGTGAC...TCCTCTTTGACC/TCCTCTTTGACC...TTCAG|GTG 1 1 67.36
54043121 GT-AG 0 8.625514802332713 5879 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 10 2140637 2146515 Crocuta crocuta 9678 TAG|GTACCCTTTT...TACCCCTAAACA/AACAAATTAATT...TTCAG|AAA 1 1 82.717
54043122 GT-AG 0 0.0001451247795278 5082 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 11 2146733 2151814 Crocuta crocuta 9678 TGG|GTAAGTTTGG...TTTACTTTGATT/TGATTTCTCACA...TTCAG|GAT 2 1 91.07
54043123 GT-AG 0 1.000000099473604e-05 1716 rna-gnl|WGS:VOAJ|mrna.FOF47_R16571 9867450 12 2151891 2153606 Crocuta crocuta 9678 TTG|GTGATTAGAT...TCTCTTTTATTT/CTTCTGTTTATT...TTCAG|GCG 0 1 93.995

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