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

✎ 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
183117346 GT-AG 0 0.0002107051108195 249 rna-XM_011094904.2 32739517 1 18060413 18060661 Sesamum indicum 4182 TTG|GTAAGCATTG...GCATCTTTGAAG/GGTGTTTTGAAT...TGCAG|GTT 0 1 15.318
183117347 GT-AG 0 1.000000099473604e-05 244 rna-XM_011094904.2 32739517 2 18060082 18060325 Sesamum indicum 4182 GAG|GTTATTTACT...TAGTTTATAATT/TTATAATTAACA...TGCAG|GTG 0 1 18.112
183117348 GT-AG 0 0.0048994615059856 474 rna-XM_011094904.2 32739517 3 18059498 18059971 Sesamum indicum 4182 AAA|GTATGCACAT...ATTTTCTAAAAG/TATTTTCTAAAA...TGCAG|CTA 2 1 21.644
183117349 GT-AG 0 1.000000099473604e-05 190 rna-XM_011094904.2 32739517 4 18059257 18059446 Sesamum indicum 4182 TAG|GTAAGCAGCC...AATATGTTATTT/ATATAATTTATC...TGCAG|TCT 2 1 23.282
183117350 GT-AG 0 0.0040199461602623 532 rna-XM_011094904.2 32739517 5 18058553 18059084 Sesamum indicum 4182 CCG|GTACTTATTG...TGCTTTTTAATT/TGCTTTTTAATT...TTTAG|ATG 0 1 28.805
183117351 GT-AG 0 1.000000099473604e-05 328 rna-XM_011094904.2 32739517 6 18057916 18058243 Sesamum indicum 4182 GAG|GTCAGCAGTT...TTTACTTTACTT/AATCTTCTAACT...TACAG|ACC 0 1 38.728
183117352 GT-AG 0 5.980331170669309e-05 1081 rna-XM_011094904.2 32739517 7 18056634 18057714 Sesamum indicum 4182 TAT|GTAGGTATCT...GATCTCCTGACT/GATCTCCTGACT...GTTAG|GTT 0 1 45.183
183117353 GT-AG 0 1.000000099473604e-05 118 rna-XM_011094904.2 32739517 8 18056030 18056147 Sesamum indicum 4182 GAG|GTTAGTGACT...CTTTCTTTATTT/TCTTTCTTTATT...TGTAG|TTA 0 1 60.79
183117354 GT-AG 0 1.000000099473604e-05 284 rna-XM_011094904.2 32739517 9 18055545 18055828 Sesamum indicum 4182 CTG|GTAAGTTCTC...ATTGCATGAACT/TTTAAAATCATA...TATAG|TCT 0 1 67.245
183117355 GT-AG 0 0.0017685843119266 128 rna-XM_011094904.2 32739517 10 18055228 18055355 Sesamum indicum 4182 ATG|GTATGCAACT...TTGCTCTGAAAA/ATCTGTTTCATA...AACAG|AAA 0 1 73.314
183117356 GT-AG 0 0.0008847998307231 145 rna-XM_011094904.2 32739517 11 18054919 18055063 Sesamum indicum 4182 CCA|GTAAGCTCGT...ATTTTCTTTGCA/ACCTGATTCACT...ACTAG|GTT 2 1 78.581
183117357 GT-AG 0 1.000000099473604e-05 94 rna-XM_011094904.2 32739517 12 18054672 18054765 Sesamum indicum 4182 AAG|GTTAGAGCTT...AATCTCTTTCCA/TTTCTACTGATA...TGTAG|AAT 2 1 83.494
183117358 GT-AG 0 0.0046628685876563 288 rna-XM_011094904.2 32739517 13 18054305 18054592 Sesamum indicum 4182 AAG|GTAACCCATT...CTATCTTTGAAT/TGAATATTCATT...GGTAG|GAC 0 1 86.031

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