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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
195653339 GT-AG 0 1.52565100736398e-05 1203 rna-XM_010551421.1 34724120 1 9038497 9039699 Tarenaya hassleriana 28532 ATG|GTATGAAATC...TAAATTTTATTG/TTATTTCTTATG...GATAG|GTG 1 1 2.18
195653340 GT-AG 0 0.0727768113642955 86 rna-XM_010551421.1 34724120 2 9036925 9037010 Tarenaya hassleriana 28532 CTG|GTATGTTGTC...TCTTTCTTGACT/TCTTTCTTGACT...TTCAG|GTA 2 1 33.63
195653341 GT-AG 0 1.000000099473604e-05 112 rna-XM_010551421.1 34724120 3 9035312 9035423 Tarenaya hassleriana 28532 GAG|GTAAAACTTC...GGATTCTTAATA/TGGATTCTTAAT...TTTAG|GTC 0 1 65.397
195653342 GT-AG 0 1.000000099473604e-05 1397 rna-XM_010551421.1 34724120 4 9033750 9035146 Tarenaya hassleriana 28532 CAG|GTAATGTCTC...GTTTCTTTCAAA/ACGATTCTGATA...AACAG|TTA 0 1 68.889
195653343 GT-AG 0 0.0151598929195097 117 rna-XM_010551421.1 34724120 5 9033428 9033544 Tarenaya hassleriana 28532 CGG|GTATGTTGTA...AAATTTTTAACT/AAATTTTTAACT...GCTAG|GTG 1 1 73.228
195653344 GT-AG 0 2.749006510956153e-05 84 rna-XM_010551421.1 34724120 6 9033232 9033315 Tarenaya hassleriana 28532 TAG|GTAAGCAGTG...TCTCCCTTATTG/TTCTCCCTTATT...TGCAG|GGC 2 1 75.598
195653345 GT-AG 0 0.0002944633899922 90 rna-XM_010551421.1 34724120 7 9032994 9033083 Tarenaya hassleriana 28532 CAG|GTATTTACTT...ATGGCCTTTTTT/ATTTGTTTCACT...GGCAG|GGA 0 1 78.73
195653346 GT-AG 0 4.883436475229534e-05 245 rna-XM_010551421.1 34724120 8 9032551 9032795 Tarenaya hassleriana 28532 CAG|GTAAACTTCT...ATGACATTATAT/ATATAGTTCATT...TGCAG|GTG 0 1 82.921
195653347 GT-AG 0 1.000000099473604e-05 89 rna-XM_010551421.1 34724120 9 9032183 9032271 Tarenaya hassleriana 28532 GAG|GTAATGGGAA...AAACTCTCATTT/TAAACTCTCATT...TGCAG|TAT 0 1 88.825
195653348 GT-AG 0 0.0026885228406566 152 rna-XM_010551421.1 34724120 10 9031869 9032020 Tarenaya hassleriana 28532 AAG|GTCTTTTTTT...TTCTTCTTACAT/TTTCTTCTTACA...GCCAG|GTG 0 1 92.254
195653349 GT-AG 0 1.000000099473604e-05 245 rna-XM_010551421.1 34724120 11 9031405 9031649 Tarenaya hassleriana 28532 CAG|GTAATCAACC...GATATCTTTACG/AACTTTTTTACG...CGCAG|GGT 0 1 96.889

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