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

✎ 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
46739537 GT-AG 0 0.0001671409196306 333 Clevi.0001s1730.1.v2.1 8691803 1 4409002 4409334 Cleome violacea 389490 CAG|GTCTTCCTCA...CTGGTTATGATG/CTGGTTATGATG...TACAG|ATC 2 1 8.492
46739538 GT-AG 0 1.000000099473604e-05 448 Clevi.0001s1730.1.v2.1 8691803 2 4408185 4408632 Cleome violacea 389490 CAG|GTGAGGTTGG...TCTTTCATGATT/CTGCTGTTCATT...TTCAG|GTT 2 1 22.297
46739539 GT-AG 0 2.3236565519859825e-05 84 Clevi.0001s1730.1.v2.1 8691803 3 4408043 4408126 Cleome violacea 389490 GTC|GTAAGTATCT...CAGTTTATAATA/AAACATTTCACT...TGCAG|GTT 0 1 24.467
46739540 GT-AG 0 0.0001080612896037 210 Clevi.0001s1730.1.v2.1 8691803 4 4407515 4407724 Cleome violacea 389490 TTT|GTAAGTTCTG...CATTTCATATAT/TTATGTTTCATT...TTCAG|AGA 0 1 36.364
46739541 GT-AG 0 0.0005031538299091 94 Clevi.0001s1730.1.v2.1 8691803 5 4407175 4407268 Cleome violacea 389490 CTG|GTATGTCTCC...GAAACCTGATTT/ATATAATTCAAT...TGAAG|GTC 0 1 45.567
46739542 GT-AG 0 1.094801651512631e-05 119 Clevi.0001s1730.1.v2.1 8691803 6 4406957 4407075 Cleome violacea 389490 GTT|GTAAGTAGTT...AAGTTCCTGACC/GTGTTATTTATA...GACAG|GAT 0 1 49.27
46739543 GC-AG 0 1.000000099473604e-05 113 Clevi.0001s1730.1.v2.1 8691803 7 4406811 4406923 Cleome violacea 389490 CAG|GCAAGTTTAG...AAATCTTTATAA/AAAATCTTTATA...TGCAG|GTA 0 1 50.505
46739544 GT-AG 0 0.0013612186397862 140 Clevi.0001s1730.1.v2.1 8691803 8 4406485 4406624 Cleome violacea 389490 CAG|GTTCCCACGA...TGTCTCATAACA/TTTTGTCTCATA...TGCAG|CAT 0 1 57.464
46739545 GT-AG 0 1.000000099473604e-05 89 Clevi.0001s1730.1.v2.1 8691803 9 4406201 4406289 Cleome violacea 389490 CTG|GTGAGCTCTG...TTATTCTAAAAC/TTTATTCTAAAA...GGCAG|CAT 0 1 64.759
46739546 GT-AG 0 0.0151074257163954 280 Clevi.0001s1730.1.v2.1 8691803 10 4405845 4406124 Cleome violacea 389490 GAG|GTAACTTTGC...TTCTCTTTGAGT/CTACGCCTCATC...TGCAG|ATT 1 1 67.602
46739547 GT-AG 0 0.0001208696732918 217 Clevi.0001s1730.1.v2.1 8691803 11 4405034 4405250 Cleome violacea 389490 TTG|GTAAGCCTCA...CTTTTTTTATCC/TCTTTTTTTATC...TGCAG|GCG 1 1 89.824

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