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

✎ 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
195654308 GT-AG 0 1.000000099473604e-05 484 rna-XM_010539440.2 34724201 1 5150704 5151187 Tarenaya hassleriana 28532 TTG|GTAATTCGGC...ACCTTTCTAACT/ACCTTTCTAACT...TGCAG|CTT 2 1 1.878
195654309 GT-AG 0 1.000000099473604e-05 107 rna-XM_010539440.2 34724201 2 5151242 5151348 Tarenaya hassleriana 28532 CAA|GTAAGATCCT...AAGTTTTTACTT/ACTTTCTTCATA...TCTAG|TGC 2 1 3.689
195654310 GT-AG 0 2.6593500845894893e-05 129 rna-XM_010539440.2 34724201 3 5151420 5151548 Tarenaya hassleriana 28532 GAG|GTACTTCCAA...CACTTTGTAACA/TGATTTGTTATA...GACAG|ACA 1 1 6.07
195654311 GT-AG 0 0.0001382775361128 316 rna-XM_010539440.2 34724201 4 5151666 5151981 Tarenaya hassleriana 28532 CAG|GTACATGTTG...TTTCTTTTATAA/CTTTCTTTTATA...CACAG|ATA 1 1 9.993
195654312 GT-AG 0 1.000000099473604e-05 406 rna-XM_010539440.2 34724201 5 5152452 5152857 Tarenaya hassleriana 28532 AAG|GTGAATATTT...TTGTCCTGGATT/TGGAAAATAATT...TGCAG|GGA 0 1 25.755
195654313 GT-AG 0 1.000000099473604e-05 108 rna-XM_010539440.2 34724201 6 5152969 5153076 Tarenaya hassleriana 28532 AAG|GTACAGGCAA...AAATTCTGGAAA/GTTAAATTCAAC...TGCAG|GTC 0 1 29.477
195654314 GT-AG 0 1.000000099473604e-05 86 rna-XM_010539440.2 34724201 7 5154040 5154125 Tarenaya hassleriana 28532 GAG|GTTAATTCCT...TTGACCGTAATC/TAATCATTTATT...TACAG|GCT 0 1 61.771
195654315 GT-AG 0 1.000000099473604e-05 226 rna-XM_010539440.2 34724201 8 5154227 5154452 Tarenaya hassleriana 28532 ATG|GTAAGGGAAA...TCTGTTGTGAAG/TTTAATGTAATC...TGCAG|GGC 2 1 65.158
195654316 GT-AG 0 4.3816744680281166e-05 76 rna-XM_010539440.2 34724201 9 5154640 5154715 Tarenaya hassleriana 28532 TCG|GTAAGTGTTG...ATTTCCTTAAAA/AAATGATTCATA...AACAG|GAT 0 1 71.429
195654317 GT-AG 0 1.000000099473604e-05 99 rna-XM_010539440.2 34724201 10 5154814 5154912 Tarenaya hassleriana 28532 AGG|GTAATGCTGA...GTTTTCTTATAA/AGTTTTCTTATA...TCTAG|GCA 2 1 74.715
195654318 GT-AG 0 1.847383602093481e-05 85 rna-XM_010539440.2 34724201 11 5155037 5155121 Tarenaya hassleriana 28532 AGG|GTATGGGAAA...AATTTCTTGATT/AATTTCTTGATT...TTCAG|GCT 0 1 78.873
195654319 GT-AG 0 1.000000099473604e-05 91 rna-XM_010539440.2 34724201 12 5155288 5155378 Tarenaya hassleriana 28532 ATT|GTTAGTATTA...GCTGTTTTACCA/TGCTGTTTTACC...CTCAG|GGG 1 1 84.44
195654320 GT-AG 0 1.000000099473604e-05 97 rna-XM_010539440.2 34724201 13 5155498 5155594 Tarenaya hassleriana 28532 AAG|GTTGGCCCTT...TGATCTTTGTTT/TATAATCTTACG...TGTAG|CAA 0 1 88.431

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