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

✎ 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
122792269 GT-AG 0 0.0003842321441807 2132 rna-XM_009411554.2 22631625 1 15898736 15900867 Musa acuminata 4641 GAG|GTGCCTAACC...CCCTCTTTAACT/CTTTAACTGACT...AACAG|GTT 0 1 7.742
122792270 GT-AG 0 1.4128463530168477e-05 689 rna-XM_009411554.2 22631625 2 15897837 15898525 Musa acuminata 4641 CAG|GTAGATATTT...AATTTCTTGGTT/AAAAAATTAACA...TGTAG|GTT 0 1 13.447
122792271 GT-AG 0 1.000000099473604e-05 78 rna-XM_009411554.2 22631625 3 15897564 15897641 Musa acuminata 4641 CAG|GTAAGAATGT...CCATTCTTAATT/CCATTCTTAATT...ATTAG|GTT 0 1 18.745
122792272 GT-AG 0 1.000000099473604e-05 357 rna-XM_009411554.2 22631625 4 15896899 15897255 Musa acuminata 4641 CAG|GTAAATTATC...TCTTCTCTGATA/TCTTCTCTGATA...TGCAG|TAT 2 1 27.112
122792273 GT-AG 0 0.0026420083658724 80 rna-XM_009411554.2 22631625 5 15896593 15896672 Musa acuminata 4641 CAG|GTATATCTCA...TATTTTTTACTT/ATATTTTTTACT...CGTAG|GTG 0 1 33.252
122792274 GT-AG 0 1.000000099473604e-05 17384 rna-XM_009411554.2 22631625 6 15879040 15896423 Musa acuminata 4641 CAG|GTGAAGTTTT...TGCTTCTTACAC/TTGCTTCTTACA...TGCAG|CCT 1 1 37.843
122792275 GT-AG 0 1.000000099473604e-05 121 rna-XM_009411554.2 22631625 7 15877671 15877791 Musa acuminata 4641 AAG|GTTTGATGTT...TTTGTCTTCTTT/TTTCAATTCACA...ATTAG|GAA 1 1 71.747
122792276 GT-AG 0 0.0006875090040769 91 rna-XM_009411554.2 22631625 8 15877408 15877498 Musa acuminata 4641 AAG|GTTTTCATGG...TGACCTTTGAAC/TTTGAACTAATT...TGCAG|TCG 2 1 76.419
122792277 GT-AG 0 2.6642564469643492e-05 781 rna-XM_009411554.2 22631625 9 15876402 15877182 Musa acuminata 4641 TAG|GTAAATTGTT...CTATTTTTAAAG/CCTATTTTTAAA...TGCAG|GAA 2 1 82.532
122792278 GT-AG 0 1.000000099473604e-05 1202 rna-XM_009411554.2 22631625 10 15875062 15876263 Musa acuminata 4641 AAG|GTACTGCACT...TTGTTTATAACT/CTTTTGTTTATA...TTCAG|GAC 2 1 86.281
122792279 GT-AG 0 1.000000099473604e-05 108 rna-XM_009411554.2 22631625 11 15874719 15874826 Musa acuminata 4641 CAG|GTGAAAGTTT...GCTTTCTGACCT/TGCTTTCTGACC...CATAG|GCA 0 1 92.665
122792280 GT-AG 0 1.000000099473604e-05 472 rna-XM_009411554.2 22631625 12 15874187 15874658 Musa acuminata 4641 ACG|GTAAGAATCA...TACTTCTTTGCT/GCAGCACTTACT...TTCAG|GTC 0 1 94.295
122792281 GT-AG 0 1.000000099473604e-05 94 rna-XM_009411554.2 22631625 13 15874021 15874114 Musa acuminata 4641 CAG|GTTTGTCATC...TTCATTTTGCTC/ATTTTGCTCATT...GCCAG|GAC 0 1 96.251

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