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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
189664131 GT-AG 0 1.000000099473604e-05 67 rna-XM_016749163.1 33869971 2 2124452 2124518 Spizellomyces punctatus 109760 AAG|GTCGGCCGTG...AGGCTTTTATTT/CTTTTATTTATG...CATAG|ACG 0 1 15.766
189664132 GT-AG 0 1.000000099473604e-05 65 rna-XM_016749163.1 33869971 3 2124256 2124320 Spizellomyces punctatus 109760 CAG|GTACATGACA...GCACGCTTAAAT/ACATGTCTGATG...TTCAG|AGG 2 1 19.955
189664133 GT-AG 0 1.000000099473604e-05 62 rna-XM_016749163.1 33869971 4 2124108 2124169 Spizellomyces punctatus 109760 AAG|GTTCAATGGA...TACTTCATATTG/CAATACTTCATA...TGCAG|ACT 1 1 22.705
189664134 GT-AG 0 7.363236489903788e-05 58 rna-XM_016749163.1 33869971 5 2123913 2123970 Spizellomyces punctatus 109760 AAA|GTATGAGTGA...ATCTTCATAATT/ATTATCTTCATA...TTTAG|GAA 0 1 27.087
189664135 GT-AG 0 1.000000099473604e-05 54 rna-XM_016749163.1 33869971 6 2123692 2123745 Spizellomyces punctatus 109760 CAG|GTGAGTTTCA...GAGCTATTGATT/GAGCTATTGATT...TTTAG|AAA 2 1 32.427
189664136 GT-AG 0 1.000000099473604e-05 63 rna-XM_016749163.1 33869971 7 2123533 2123595 Spizellomyces punctatus 109760 TAG|GTAGAATGAC...ACAGTCTTAGCC/TCAATTCTAAAA...CGCAG|TGT 2 1 35.497
189664137 GT-AG 0 3.0241652157577585e-05 74 rna-XM_016749163.1 33869971 8 2123373 2123446 Spizellomyces punctatus 109760 ATG|GTACGCAAGT...TGGTTCTGATAA/ATGGTTCTGATA...GACAG|AGG 1 1 38.248
189664138 GT-AG 0 1.000000099473604e-05 77 rna-XM_016749163.1 33869971 9 2123281 2123357 Spizellomyces punctatus 109760 AAG|GTGGGAACAC...AAAGTTTTAAAT/AAAGTTTTAAAT...GATAG|GAG 1 1 38.727
189664139 GT-AG 0 0.0001584997748142 60 rna-XM_016749163.1 33869971 10 2122147 2122206 Spizellomyces punctatus 109760 TTT|GTAAGTTGCA...AACCTCTTCACG/AACCTCTTCACG...ATTAG|CAT 1 1 73.073
189664140 GT-AG 0 1.514378373330331e-05 58 rna-XM_016749163.1 33869971 11 2121983 2122040 Spizellomyces punctatus 109760 AAG|GTATAATCGG...GACACCATGGTT/GTTTAGGTAACC...GCTAG|GTA 2 1 76.463
189664141 GT-AG 0 1.000000099473604e-05 70 rna-XM_016749163.1 33869971 12 2121807 2121876 Spizellomyces punctatus 109760 GAG|GTTGGTATGG...GCGACTTTGCCG/AGAGTGCTGAAA...GGAAG|CTC 0 1 79.853
189667567 GT-AG 0 1.000000099473604e-05 73 rna-XM_016749163.1 33869971 1 2124657 2124729 Spizellomyces punctatus 109760 CAT|GTTAGTCTCC...TGCACCTTACCC/TTGCACCTTACC...CATAG|CTT   0 12.216

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