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

✎ 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
55033206 GT-AG 0 0.0002734876462704 2678 rna-XM_008445642.2 10007541 1 5730841 5733518 Cucumis melo 3656 CAG|GTGTGCTGTT...ATTAACTTAATT/ATGATGCTCATG...TGCAG|TTG 1 1 1.821
55033207 GT-AG 0 4.582020261043761e-05 717 rna-XM_008445642.2 10007541 2 5730023 5730739 Cucumis melo 3656 CCT|GTAAGTCTTG...GATTTCTGAGAC/GGATTTCTGAGA...TGCAG|GAT 0 1 4.45
55033208 GT-AG 0 0.0099414952355386 647 rna-XM_008445642.2 10007541 3 5729146 5729792 Cucumis melo 3656 AAG|GTATTTTCTG...TCTGATTTAACC/TCTGATTTAACC...ATCAG|ATT 2 1 10.435
55033209 GT-AG 0 6.693386694164807e-05 195 rna-XM_008445642.2 10007541 4 5728783 5728977 Cucumis melo 3656 CAG|GTGTGTTTTT...TGGACCGTAGTT/CCGTAGTTCATC...ATCAG|CTT 2 1 14.806
55033210 GT-AG 0 0.0001723304613689 84 rna-XM_008445642.2 10007541 5 5728326 5728409 Cucumis melo 3656 TGG|GTATGGTCCC...GATCCCTTTTCT/TTTTGTTTCAAT...AATAG|GCG 0 1 24.512
55033211 GT-AG 0 0.0182073699982227 2118 rna-XM_008445642.2 10007541 6 5726064 5728181 Cucumis melo 3656 AAG|GTATACCTTA...ATGTTTATGACC/ATGTTTATGACC...TGCAG|AAA 0 1 28.259
55033212 GT-AG 0 1.000000099473604e-05 104 rna-XM_008445642.2 10007541 7 5725807 5725910 Cucumis melo 3656 ATG|GTATGAGAAA...CTATTGTTGATT/CTATTGTTGATT...TTCAG|GGA 0 1 32.24
55033213 GT-AG 0 7.679198378883568e-05 218 rna-XM_008445642.2 10007541 8 5725472 5725689 Cucumis melo 3656 ATG|GTATGGAATT...CCAACTTTGATT/CCAACTTTGATT...TGCAG|ATT 0 1 35.285
55033214 GT-AG 0 0.0038034918542913 107 rna-XM_008445642.2 10007541 9 5725284 5725390 Cucumis melo 3656 GAG|GTATTTTTAC...GTTGCATTATAT/ATTTCGCTCATG...TGCAG|GAA 0 1 37.393
55033215 GT-AG 0 1.000000099473604e-05 1280 rna-XM_008445642.2 10007541 10 5723854 5725133 Cucumis melo 3656 AAG|GTCAGATTTC...TGTTTCTTACAA/TTGTTTCTTACA...AGCAG|GCT 0 1 41.296
55033216 GT-AG 0 1.000000099473604e-05 6910 rna-XM_008445642.2 10007541 11 5715381 5722290 Cucumis melo 3656 CAG|GTGCGGTTTT...AGCACATTGACA/AGCACATTGACA...TGCAG|TGC 0 1 81.967
55036595 GT-AG 0 1.000000099473604e-05 295 rna-XM_008445642.2 10007541 12 5714921 5715215 Cucumis melo 3656 AAG|GTGAGAGAAA...AGTTCTTCAATT/GAGTTCTTCAAT...CACAG|GGG   0 86.261

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