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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
153481552 GT-AG 0 0.0010514296549629 436 rna-XM_024522783.1 27592318 1 6007486 6007921 Physcomitrium patens 3218 GCT|GTACGTAATT...TGTCCCTTATGA/TTGTCCCTTATG...CGCAG|GTC 0 1 29.017
153481553 GT-AG 0 0.0005511837950154 237 rna-XM_024522783.1 27592318 2 6008094 6008330 Physcomitrium patens 3218 TTG|GTAAGCATGC...CTTTTCTTGACT/CTTTTCTTGACT...CACAG|AGG 1 1 34.436
153481554 GT-AG 0 4.63157345162059e-05 298 rna-XM_024522783.1 27592318 3 6008549 6008846 Physcomitrium patens 3218 CAG|GTACTTACAG...TATTCTTTACAT/CTATTCTTTACA...GGCAG|TGT 0 1 41.304
153481555 GT-AG 0 1.000000099473604e-05 117 rna-XM_024522783.1 27592318 4 6008908 6009024 Physcomitrium patens 3218 GAG|GTTGGTTCAA...TTTTTTTTACCT/TTTTTTTTTACC...TGTAG|ATG 1 1 43.226
153481556 GT-AG 0 1.000000099473604e-05 146 rna-XM_024522783.1 27592318 5 6009098 6009243 Physcomitrium patens 3218 CAG|GTTGAAATCT...CTACCGTTAACG/CTCATTCTAACT...TACAG|GTG 2 1 45.526
153481557 GT-AG 0 6.490990593893441e-05 270 rna-XM_024522783.1 27592318 6 6009322 6009591 Physcomitrium patens 3218 CGC|GTAAGTGTGC...GTGTTCTTATTT/TGTGTTCTTATT...TTCAG|GCT 2 1 47.984
153481558 GT-AG 0 1.000000099473604e-05 220 rna-XM_024522783.1 27592318 7 6009756 6009975 Physcomitrium patens 3218 AAG|GTGCGTACTC...GTGGTTTGAGAA/CAGAAGTTGACT...TTCAG|GCC 1 1 53.151
153481559 GC-AG 0 1.000000099473604e-05 495 rna-XM_024522783.1 27592318 8 6010145 6010639 Physcomitrium patens 3218 AAG|GCATGTCATT...ATACTTTTGATA/ATACTTTTGATA...AACAG|ATT 2 1 58.475
153481560 GT-AG 0 1.000000099473604e-05 163 rna-XM_024522783.1 27592318 9 6010886 6011048 Physcomitrium patens 3218 AAG|GTCAGTTTTC...ATTTTCTTAAAG/TATTTTCTTAAA...TTCAG|GCT 2 1 66.226
153481561 GT-AG 0 0.0027085388696699 280 rna-XM_024522783.1 27592318 10 6011272 6011551 Physcomitrium patens 3218 GAG|GTATATCAGA...TTATTTTTAATA/TTATTTTTAATA...TGCAG|AGA 0 1 73.251
153481562 GT-AG 0 1.000000099473604e-05 363 rna-XM_024522783.1 27592318 11 6011858 6012220 Physcomitrium patens 3218 GAG|GTTAGTTATA...ATCTCCTAAAAT/TTGTTTATCATT...TTCAG|GTT 0 1 82.892
153481563 GT-AG 0 1.000000099473604e-05 136 rna-XM_024522783.1 27592318 12 6012443 6012578 Physcomitrium patens 3218 AAG|GTTGGACGAT...GTTACATTATTC/ACATTATTCAAT...TTCAG|GTT 0 1 89.887
153481564 GT-AG 0 5.617353233879112e-05 147 rna-XM_024522783.1 27592318 13 6012713 6012859 Physcomitrium patens 3218 CAG|GTAAATTGTT...TATTTTTTGATG/TATTTTTTGATG...TGCAG|CAA 2 1 94.108

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