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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
46738917 GT-AG 0 1.000000099473604e-05 141 Clevi.0001s2261.1.v2.1 8691751 2 7423924 7424064 Cleome violacea 389490 GAC|GTAAGTGATA...CTTTTCATGAAT/TTACTTTTCATG...CACAG|GTC 0 1 50.298
46738918 GT-AG 0 0.006902207080258 248 Clevi.0001s2261.1.v2.1 8691751 3 7424386 7424633 Cleome violacea 389490 AGG|GTATGCTGCT...CAAGTTTTCACT/CAAGTTTTCACT...TGCAG|GAA 0 1 56.675
46738919 GT-AG 0 1.000000099473604e-05 303 Clevi.0001s2261.1.v2.1 8691751 4 7424721 7425023 Cleome violacea 389490 CTG|GTGAGGACGT...TTGTCCATATAT/AGTTTAGTTATA...TGCAG|GTT 0 1 58.403
46738920 GT-AG 0 3.79560240973742e-05 81 Clevi.0001s2261.1.v2.1 8691751 5 7425720 7425800 Cleome violacea 389490 CGG|GTAGGTTCTC...TCCTCCTTCATG/GTGATTCTTATG...TTCAG|GTG 0 1 72.229
46738921 GT-AG 0 1.000000099473604e-05 311 Clevi.0001s2261.1.v2.1 8691751 6 7425966 7426276 Cleome violacea 389490 CAG|GTGATTTTTG...TGCCTCTTTTCG/TTGTCATTCATT...CGCAG|AAA 0 1 75.507
46738922 GT-AG 0 1.6803741535256022e-05 219 Clevi.0001s2261.1.v2.1 8691751 7 7426572 7426790 Cleome violacea 389490 CGA|GTAAGTTGTC...GATTGCTTGGTT/AGTTGATTGATA...TATAG|GCA 1 1 81.367
46738923 GT-AG 0 2.538972072182825e-05 235 Clevi.0001s2261.1.v2.1 8691751 8 7427006 7427240 Cleome violacea 389490 AAG|GTATTGCAAT...GAACTTTTGACA/TGTCACTTCACC...TGAAG|GTT 0 1 85.638
46738924 GT-AG 0 1.000000099473604e-05 95 Clevi.0001s2261.1.v2.1 8691751 9 7427547 7427641 Cleome violacea 389490 CAG|GTACAAACAT...CCGATTTTGACT/CCGATTTTGACT...TTCAG|GCT 0 1 91.716
46738925 GT-AG 0 3.530232556862694e-05 101 Clevi.0001s2261.1.v2.1 8691751 10 7427706 7427806 Cleome violacea 389490 CAG|GTAACTGACG...AATTTTTTGCTT/CTTGTTTTTACG...TGCAG|TCT 1 1 92.988
46738926 GT-AG 0 5.437741068906127e-05 148 Clevi.0001s2261.1.v2.1 8691751 11 7428047 7428194 Cleome violacea 389490 ATG|GTACGCACTA...TGTATATTGAAC/TGTATATTGAAC...TGCAG|GTC 1 1 97.755
46742791 GT-AG 0 1.000000099473604e-05 167 Clevi.0001s2261.1.v2.1 8691751 1 7421533 7421699 Cleome violacea 389490 TTG|GTGGGTTGGT...TTGTTTCTGACG/TTGTTTCTGACG...TGCAG|AGT   0 9.714

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