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)

13 rows where transcript_id = 20642269

✎ 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
110536190 GT-AG 0 1.000000099473604e-05 1063 rna-XM_008344421.3 20642269 1 17016819 17017881 Malus domestica 3750 CAG|GTAATGATAT...AGGTTTTTATAT/ATATAATTTATT...TGCAG|CCA 0 1 3.012
110536191 GT-AG 0 1.000000099473604e-05 137 rna-XM_008344421.3 20642269 2 17019202 17019338 Malus domestica 3750 AAG|GTGCATTATT...CGTTGCTTAATT/CGTTGCTTAATT...GATAG|AAA 0 1 22.498
110536192 GT-AG 0 1.000000099473604e-05 424 rna-XM_008344421.3 20642269 3 17020680 17021103 Malus domestica 3750 CAG|GTTTGGTCTC...TGTTACTTATAT/CTGTTACTTATA...AATAG|GGT 0 1 42.294
110536193 GT-AG 0 5.194142256365011e-05 293 rna-XM_008344421.3 20642269 4 17021217 17021509 Malus domestica 3750 CAA|GTAAGTTTAT...TTCTCATTATTT/TTGTTTCTCATT...TCCAG|GTA 2 1 43.962
110536194 GT-AG 0 0.0009632848707996 96 rna-XM_008344421.3 20642269 5 17021598 17021693 Malus domestica 3750 CTT|GTAGGTTTCT...CTTTTTTGGACT/CTCTGTTTGATT...CGCAG|GTT 0 1 45.261
110536195 GT-AG 0 0.1138435207028136 255 rna-XM_008344421.3 20642269 6 17021781 17022035 Malus domestica 3750 CAG|GTAACCTTCT...TTTACCTGAATG/TCTGAGTTTACC...TGCAG|GTA 0 1 46.546
110536196 GT-AG 0 1.000000099473604e-05 79 rna-XM_008344421.3 20642269 7 17022129 17022207 Malus domestica 3750 AAG|GTTAGTTTAT...CATTGCTTACCA/ACATTGCTTACC...TACAG|AGT 0 1 47.919
110536197 GT-AG 0 0.0003016118278324 83 rna-XM_008344421.3 20642269 8 17022292 17022374 Malus domestica 3750 CAA|GTACGATTCA...TTCGTTTTGATA/TTCGTTTTGATA...CGTAG|GAG 0 1 49.159
110536198 GT-AG 0 1.000000099473604e-05 491 rna-XM_008344421.3 20642269 9 17022579 17023069 Malus domestica 3750 CAG|GTTCGTTAAG...TTTTCATTATTA/ATTATATTGAAT...TACAG|AAT 0 1 52.17
110536199 GT-AG 0 0.2550515948886567 73 rna-XM_008344421.3 20642269 10 17023313 17023385 Malus domestica 3750 AAG|GTATGCTTTA...CATTTCTTACTG/TCATTTCTTACT...TGCAG|ATC 0 1 55.757
110536200 GT-AG 0 0.0012311379392383 85 rna-XM_008344421.3 20642269 12 17024951 17025035 Malus domestica 3750 ATG|GTATGTCTTA...AGTCTCTTGGTG/TGCTATTTCACT...TCCAG|CAA 0 1 78.831
110536201 GT-AG 0 4.580601600109689e-05 305 rna-XM_008344421.3 20642269 13 17025582 17025886 Malus domestica 3750 AAG|GTAAACATTT...TCTTTTGTGACG/TGACGTCTAACT...TGCAG|TGC 0 1 86.891
110536202 GT-AG 0 1.000000099473604e-05 462 rna-XM_008344421.3 20642269 14 17026139 17026600 Malus domestica 3750 GAG|GTAAGTTGCT...TCGGGTTTAACT/ATCTTTCTGATA...CACAG|GTA 0 1 90.611

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