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

✎ 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
55681183 GT-AG 0 0.0004530668864454 476 rna-XM_023678520.1 10143825 1 5552093 5552568 Cucurbita pepo 3663 GAG|GTAACTGTTG...TGTTCATTACTT/ATCATGTTCATT...TATAG|TGG 0 1 3.555
55681184 GT-AG 0 1.000000099473604e-05 1211 rna-XM_023678520.1 10143825 2 5550712 5551922 Cucurbita pepo 3663 GTG|GTGAGTATAA...TTTTTTTTATTA/GTTTTTTTTATT...GTCAG|GGA 2 1 7.355
55681185 GT-AG 0 1.000000099473604e-05 1532 rna-XM_023678520.1 10143825 3 5549053 5550584 Cucurbita pepo 3663 GAG|GTAATAATTT...TGTTTTTTCACA/TGTTTTTTCACA...ACCAG|TTG 0 1 10.195
55681186 GT-AG 0 0.24620569559136 345 rna-XM_023678520.1 10143825 4 5548445 5548789 Cucurbita pepo 3663 AAG|GTATCCAGTG...GGTTTCTACACT/TCTACACTAACC...TTCAG|ATG 2 1 16.074
55681187 GT-AG 0 2.1097929624795056e-05 99 rna-XM_023678520.1 10143825 5 5546698 5546796 Cucurbita pepo 3663 GAG|GTAGTTTAAA...TTCACTTTATTC/TCTTTTTTCATG...TGCAG|GTT 0 1 52.918
55681188 GT-AG 0 1.000000099473604e-05 478 rna-XM_023678520.1 10143825 6 5546007 5546484 Cucurbita pepo 3663 CAG|GTGAATGGCT...GATTCCTTGAAT/TTGTATCTCACT...GCCAG|TAC 0 1 57.679
55681189 GT-AG 0 1.000000099473604e-05 98 rna-XM_023678520.1 10143825 7 5545661 5545758 Cucurbita pepo 3663 AAG|GTCAGTTTAT...ATTTTATTAATT/ATTTTATTAATT...TCCAG|ATT 2 1 63.224
55681190 GT-AG 0 3.4043350781576094e-05 332 rna-XM_023678520.1 10143825 8 5544914 5545245 Cucurbita pepo 3663 GAG|GTTTAATTTT...ATTGGTTTGACA/ATAGTTTTCACA...TTTAG|GTT 0 1 72.502
55681191 GT-AG 0 0.0001555569634813 714 rna-XM_023678520.1 10143825 9 5543994 5544707 Cucurbita pepo 3663 GAG|GTATAAATTC...CTTTTTTTAAGG/CTTTTTTTAAGG...TTCAG|GTG 2 1 77.107
55681192 GT-AG 0 0.0001597503101613 169 rna-XM_023678520.1 10143825 10 5543467 5543635 Cucurbita pepo 3663 GAG|GTGACTATTT...TGTTCTTTATTC/TTGTTCTTTATT...TTCAG|ATA 0 1 85.111
55681193 GT-AG 0 0.0002986666997317 149 rna-XM_023678520.1 10143825 11 5543099 5543247 Cucurbita pepo 3663 TTG|GTATGGTTGT...TTATTGTTATTG/ACAGTACTTATA...TACAG|GAG 0 1 90.007
55681194 GT-AG 0 1.000000099473604e-05 379 rna-XM_023678520.1 10143825 12 5542391 5542769 Cucurbita pepo 3663 CAG|GTCAGTTTCA...TTAGCCTTACCT/GTTAGCCTTACC...AACAG|ATA 2 1 97.362

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