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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
186783787 GT-AG 0 0.0062140124178365 1090 rna-XM_015211180.2 33342868 1 91982268 91983357 Solanum pennellii 28526 GAG|GTATTCGCTT...AATCTCTTACAC/CTTTGTTTGAAC...TTCAG|CTT 0 1 7.977
186783788 GT-AG 0 2.146203212802808e-05 162 rna-XM_015211180.2 33342868 2 91983436 91983597 Solanum pennellii 28526 AAG|GTAACAACAA...TATCTTTTATTT/CTATCTTTTATT...GATAG|ATG 0 1 10.115
186783789 GT-AG 0 1.000000099473604e-05 98 rna-XM_015211180.2 33342868 3 91983664 91983761 Solanum pennellii 28526 AGG|GTGTGTGAGA...TAAACTTTACTG/TTAAACTTTACT...TGCAG|ATT 0 1 11.924
186783790 GT-AG 0 0.0025914481810952 3049 rna-XM_015211180.2 33342868 4 91983928 91986976 Solanum pennellii 28526 CTG|GTAACTACCA...AAACTTTTAACC/ATCTGATTTATT...CCCAG|AAT 1 1 16.475
186783791 GT-AG 0 1.000000099473604e-05 88 rna-XM_015211180.2 33342868 5 91987041 91987128 Solanum pennellii 28526 TAG|GTTTGTGTTC...CTGGCTTTGCTG/TTTGCTGTCATT...TGCAG|GAA 2 1 18.229
186783792 GT-AG 0 1.000000099473604e-05 503 rna-XM_015211180.2 33342868 6 91987424 91987926 Solanum pennellii 28526 AAG|GTGATTTATG...TTTCCCTTTTTC/CTTTTTCTTATT...ATCAG|ACA 0 1 26.316
186783793 GT-AG 1 97.29448236710928 300 rna-XM_015211180.2 33342868 7 91988054 91988353 Solanum pennellii 28526 AGC|GTATCCTTCT...ACTTTGTTGACA/ACTTTGTTGACA...CTCAG|ACA 1 1 29.797
186783794 GT-AG 0 3.941912380507282e-05 1093 rna-XM_015211180.2 33342868 8 91988499 91989591 Solanum pennellii 28526 TCT|GTGAGCAACA...CTTTTTTTAACA/CTTTTTTTAACA...CCTAG|ATA 2 1 33.772
186783795 GT-AG 0 4.900455612438094e-05 384 rna-XM_015211180.2 33342868 9 91989731 91990114 Solanum pennellii 28526 AAG|GTTTGTCTTT...GATGTTTTAAAC/ATCTATTTAATG...ATCAG|GGA 0 1 37.582
186783796 GT-AG 0 1.000000099473604e-05 714 rna-XM_015211180.2 33342868 10 91991276 91991989 Solanum pennellii 28526 CAG|GTAGGATGTT...AGAACCTTACTT/AAGTTATTGATT...TCCAG|GGG 0 1 69.408
186783797 GT-AG 0 1.000000099473604e-05 675 rna-XM_015211180.2 33342868 11 91992550 91993224 Solanum pennellii 28526 TAG|GTCAGCTATT...TTATCTTTTGCT/ATCTGATTTATT...GACAG|GTA 2 1 84.759
186783798 GT-AG 0 0.000139144485088 182 rna-XM_015211180.2 33342868 12 91993498 91993679 Solanum pennellii 28526 GAG|GTATGAAACA...CACTCCTTAATT/TTTGTTTTGACT...ACTAG|GTA 2 1 92.242

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