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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
95730831 GT-AG 0 1.000000099473604e-05 4009 rna-XM_047278667.1 17888389 2 49977430 49981438 Hydra vulgaris 6087 GCG|GTAATTGTTT...TATACTATATAT/ATATATATAATA...TTCAG|TTC 1 1 50.151
95730832 GT-AG 0 0.0017379348630623 101 rna-XM_047278667.1 17888389 3 49977245 49977345 Hydra vulgaris 6087 AAG|GTTTACATTA...TACTTCTTTACA/TACTTCTTTACA...TTTAG|TTA 1 1 52.695
95730833 GT-AG 0 0.0003892629960701 16790 rna-XM_047278667.1 17888389 4 49960335 49977124 Hydra vulgaris 6087 AAA|GTAATTTGTT...GCTTTTTTAAAT/TAAATACTCATA...TCTAG|TAA 1 1 56.329
95730834 GT-AG 0 7.253018541688203e-05 13501 rna-XM_047278667.1 17888389 5 49946761 49960261 Hydra vulgaris 6087 TGA|GTAAGATTTT...ATTTTTTTAAAT/ATTTTTTTAAAT...TATAG|GAA 2 1 58.54
95730835 GT-AG 0 1.000000099473604e-05 3476 rna-XM_047278667.1 17888389 6 49943170 49946645 Hydra vulgaris 6087 GAG|GTTCTTACTT...TTTGCTTTAGTA/TCAAATTTAATT...TTTAG|GTG 0 1 62.023
95730836 GT-AG 0 1.000000099473604e-05 18594 rna-XM_047278667.1 17888389 7 49924489 49943082 Hydra vulgaris 6087 CAG|GTTTGTTGTA...ATATATTTATAT/TATATATTTATA...CTTAG|GAT 0 1 64.658
95730837 GT-AG 0 5.814720616571889e-05 3189 rna-XM_047278667.1 17888389 8 49921249 49924437 Hydra vulgaris 6087 TAT|GTAAGTATCT...GTTTTTTTATTT/AGTTTTTTTATT...TTTAG|GGC 0 1 66.202
95730838 GT-AG 0 3.147692127423752e-05 10320 rna-XM_047278667.1 17888389 9 49910799 49921118 Hydra vulgaris 6087 AAT|GTTAGTTCTT...ACTTCTTTAATA/ACTTCTTTAATA...TTTAG|GTA 1 1 70.139
95730839 GT-AG 0 1.000000099473604e-05 2649 rna-XM_047278667.1 17888389 10 49908076 49910724 Hydra vulgaris 6087 GAA|GTGAGTTTTT...TAATTTTTAAAT/TAATTTTTAAAT...TTTAG|TTG 0 1 72.38
95730840 GT-AG 0 0.0075181339857145 1263 rna-XM_047278667.1 17888389 11 49906677 49907939 Hydra vulgaris 6087 AAT|GTATATACAT...AAAGTTTTAAAA/ATAACATTTATA...TATAG|ATT 1 1 76.499
95730841 GT-AG 0 0.0025415758396788 16430 rna-XM_047278667.1 17888389 12 49890092 49906521 Hydra vulgaris 6087 AAA|GTAAACTTTA...TTATTTTTGTTT/GTACAATTTATT...CGTAG|GAT 0 1 81.193
95736342 GT-AG 0 1.000000099473604e-05 12679 rna-XM_047278667.1 17888389 1 49982883 49995561 Hydra vulgaris 6087 AAG|GTTAAGATAA...ATTTTTTTAATT/ATTTTTTTAATT...TTTAG|ATA   0 7.329

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