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

✎ 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
82238953 GT-AG 0 1.000000099473604e-05 302337 rna-XM_031055195.1 15198768 1 4488855 4791191 Geospiza fortis 48883 CAG|GTAAGAGGTG...GTTGCTATATCC/TGGTAATTAATG...TGCAG|TGT 0 1 3.585
82238954 GT-AG 0 1.000000099473604e-05 30384 rna-XM_031055195.1 15198768 2 4458291 4488674 Geospiza fortis 48883 GAG|GTAAGGCAAG...TGTTCCTTTTCT/CCTTTTCTCACC...CACAG|AAA 0 1 11.001
82238955 GT-AG 0 1.000000099473604e-05 945 rna-XM_031055195.1 15198768 3 4457151 4458095 Geospiza fortis 48883 CTA|GTAAGAACCC...CTTTCCCTGATG/TGTAACTTTACT...TGTAG|CTT 0 1 19.036
82238956 GT-AG 0 1.3320716439057576e-05 896 rna-XM_031055195.1 15198768 4 4456132 4457027 Geospiza fortis 48883 AAG|GTACAAACTT...TTTACTTTATTT/TTTTATTTTATT...TTAAG|ACT 0 1 24.104
82238957 GT-AG 0 1.000000099473604e-05 4044 rna-XM_031055195.1 15198768 5 4451883 4455926 Geospiza fortis 48883 AGG|GTAGGTGTGG...GTTTTCTTTTTT/GTGTACTTTACA...TTTAG|CCA 1 1 32.55
82238958 GT-AG 0 1.1069504339474577e-05 108 rna-XM_031055195.1 15198768 6 4451729 4451836 Geospiza fortis 48883 AAA|GTAAGTACTA...TTGTTTTTATAA/CTTGTTTTTATA...TCCAG|TGA 2 1 34.446
82238959 GT-AG 0 1.000000099473604e-05 11686 rna-XM_031055195.1 15198768 7 4439969 4451654 Geospiza fortis 48883 CAG|GTGAGAAATG...CTCCTTTTACTC/CCTCCTTTTACT...TGTAG|GCC 1 1 37.495
82238960 GT-AG 0 1.000000099473604e-05 565 rna-XM_031055195.1 15198768 8 4438491 4439055 Geospiza fortis 48883 AAG|GTATGGTACA...ATGGTGTCAATA/AATAGACTCAAA...TGCAG|ATC 2 1 75.113
82238961 GT-AG 0 1.000000099473604e-05 410 rna-XM_031055195.1 15198768 9 4437976 4438385 Geospiza fortis 48883 CAG|GTAGTGCCTT...AGGTGCTTGATT/TTTACATTCACA...CCTAG|ATA 2 1 79.44
82238962 GT-AG 0 0.000213785713102 9036 rna-XM_031055195.1 15198768 10 4428819 4437854 Geospiza fortis 48883 ATT|GTAAGCACTG...ATCTCTATGACA/CATTTGTTAAAA...AACAG|GAA 0 1 84.425
82238963 GT-AG 0 1.000000099473604e-05 333 rna-XM_031055195.1 15198768 11 4428364 4428696 Geospiza fortis 48883 TGG|GTAGGAACTT...TGTGTGTTAACT/CTTTTGTTCACA...GGCAG|AGA 2 1 89.452
82238964 GT-AG 0 1.2177713166457916e-05 2848 rna-XM_031055195.1 15198768 12 4425364 4428211 Geospiza fortis 48883 TAG|GTAGGTGTTT...TGCCTCTTACTT/TTGCCTCTTACT...TCCAG|ATT 1 1 95.715

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