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

✎ 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
204419722 GT-AG 0 8.265570796314673e-05 279 rna-XM_038827831.1 36995257 1 8345097 8345375 Tripterygium wilfordii 458696 AAG|GTACGCTAAT...CAAATCTTCACT/CAAATCTTCACT...TGCAG|GGG 1 1 1.593
204419723 GT-AG 0 1.000000099473604e-05 402 rna-XM_038827831.1 36995257 2 8345489 8345890 Tripterygium wilfordii 458696 CAG|GTCAGTTCAT...CCTTTCTTAAGC/CATATTATTACT...TTTAG|GTT 0 1 5.778
204419724 GT-AG 0 1.000000099473604e-05 105 rna-XM_038827831.1 36995257 3 8345990 8346094 Tripterygium wilfordii 458696 CAT|GTAAGGGTGC...GAGATCTTATTT/TGAGATCTTATT...TTCAG|GCA 0 1 9.444
204419725 GT-AG 0 0.001671746292349 92 rna-XM_038827831.1 36995257 4 8346152 8346243 Tripterygium wilfordii 458696 CCG|GTATGCCACA...AGATTCTCAAAC/AAGATTCTCAAA...TGCAG|CAA 0 1 11.556
204419726 GT-AG 0 1.000000099473604e-05 90 rna-XM_038827831.1 36995257 5 8346400 8346489 Tripterygium wilfordii 458696 TTG|GTTAGTGTAC...TAATTCTGGACG/AAATCTCTAACG...TACAG|GAT 0 1 17.333
204419727 GT-AG 0 1.000000099473604e-05 615 rna-XM_038827831.1 36995257 6 8346575 8347189 Tripterygium wilfordii 458696 GTG|GTGAGTTTTT...TTATCTTTTGTT/TAGTTATTTATC...TGTAG|GCC 1 1 20.481
204419728 GT-AG 0 1.1242650853042746e-05 456 rna-XM_038827831.1 36995257 7 8347281 8347736 Tripterygium wilfordii 458696 CTG|GTAGGTATCC...TGTTTCTTCACA/CTGATACTTATT...GTTAG|GAA 2 1 23.852
204419729 GT-AG 0 0.0004841158039436 78 rna-XM_038827831.1 36995257 8 8347902 8347979 Tripterygium wilfordii 458696 AAG|GTATGATTTC...TTTTTTTCGACT/TTTCGACTCACA...TTCAG|GGC 2 1 29.963
204419730 GT-AG 0 1.000000099473604e-05 551 rna-XM_038827831.1 36995257 9 8348103 8348653 Tripterygium wilfordii 458696 TCG|GTGGGTTCGC...AGATTTTTGATA/GTCATACTCATC...TTCAG|CTA 2 1 34.519
204419731 GT-AG 0 1.000000099473604e-05 179 rna-XM_038827831.1 36995257 10 8348730 8348908 Tripterygium wilfordii 458696 AAG|GTTTGTCAAG...GATTTTTTACTA/TTTTTACTAACA...TGAAG|GTT 0 1 37.333
204419732 GT-AG 0 0.0179240582835189 219 rna-XM_038827831.1 36995257 11 8349057 8349275 Tripterygium wilfordii 458696 GTG|GTATGTTTCA...TAATCTTTCACC/AATTTGCTTACT...GTTAG|GCA 1 1 42.815
204419733 GT-AG 0 1.000000099473604e-05 193 rna-XM_038827831.1 36995257 12 8350430 8350622 Tripterygium wilfordii 458696 AAG|GTGAGTTTTT...AATTTCTTCACT/AATTTCTTCACT...TTTAG|GTC 0 1 85.556
204419734 GT-AG 0 1.000000099473604e-05 520 rna-XM_038827831.1 36995257 13 8350814 8351333 Tripterygium wilfordii 458696 GCC|GTGAGTGCTA...TTCCTCTGGACT/CATTTGCTCACT...TACAG|GGA 2 1 92.63

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