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

✎ 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
1930125 GT-AG 0 1.000000099473604e-05 648 Acora.01G225800.1.v1.1 310676 1 36607963 36608610 Acorus americanus 263995 AAG|GTGATGATGC...TATTTTTTATAA/GTATTTTTTATA...CTCAG|ATG 2 1 1.498
1930126 GT-AG 0 1.000000099473604e-05 130 Acora.01G225800.1.v1.1 310676 2 36607653 36607782 Acorus americanus 263995 GAG|GTCCGTCAGC...ATTGGCTTATTA/CATTGGCTTATT...TTTAG|ATT 2 1 6.068
1930127 GT-AG 0 0.000527258512002 78 Acora.01G225800.1.v1.1 310676 3 36607454 36607531 Acorus americanus 263995 CAC|GTACGTTTCT...AAGTACTAATCT/CAAGTACTAATC...TCTAG|CAG 0 1 9.139
1930128 GT-AG 0 0.0014804731955627 808 Acora.01G225800.1.v1.1 310676 4 36606603 36607410 Acorus americanus 263995 AGG|GTATAGTAAT...TGATTTTTGATC/TGATTTTTGATC...AACAG|ATA 1 1 10.231
1930129 GT-AG 0 0.0001132231364407 77 Acora.01G225800.1.v1.1 310676 5 36606473 36606549 Acorus americanus 263995 AAG|GTATTGCTCT...TCTGCATTAAAT/CGTATGTTGACC...GGCAG|CCT 0 1 11.577
1930130 GT-AG 0 0.0034077305354376 273 Acora.01G225800.1.v1.1 310676 6 36606144 36606416 Acorus americanus 263995 AAA|GTATGTAATA...GTGCTCTTAGAA/AGTTGCCTCACC...TGCAG|AGT 2 1 12.998
1930131 GT-AG 0 0.0007949282074321 143 Acora.01G225800.1.v1.1 310676 7 36605848 36605990 Acorus americanus 263995 GAG|GTAGGCTTTG...TGTTTCTTCATG/TGTTTCTTCATG...TGCAG|GGA 2 1 16.882
1930132 GT-AG 0 1.000000099473604e-05 604 Acora.01G225800.1.v1.1 310676 8 36605011 36605614 Acorus americanus 263995 AAG|GTAATTAGAA...GCAATTTTGATG/ATGTTTGTTATT...TTCAG|ATA 1 1 22.798
1930133 GT-AG 0 0.0008951398334776 544 Acora.01G225800.1.v1.1 310676 9 36602899 36603442 Acorus americanus 263995 AGG|GTATGCAATA...AAGTCCATGAAT/CCATTACTAATT...TATAG|GAA 0 1 62.605
1930134 GT-AG 0 1.9551592792689264e-05 948 Acora.01G225800.1.v1.1 310676 10 36601003 36601950 Acorus americanus 263995 GAG|GTGAGCTTTT...TTCCTTTTAATT/TTTTAATTGATT...ATCAG|GTA 0 1 86.672
1930135 GT-AG 0 35.963309089152816 542 Acora.01G225800.1.v1.1 310676 11 36600070 36600611 Acorus americanus 263995 AAG|GTATCCTTGT...CATTCCTTTATA/ACTCTTTTCACT...TGCAG|TTA 1 1 96.598
1930136 GT-AG 0 1.000000099473604e-05 193 Acora.01G225800.1.v1.1 310676 12 36599814 36600006 Acorus americanus 263995 AGG|GTGAGTACTT...AAAATCTTATGC/ATGAGCTTCATT...GTCAG|TTT 1 1 98.198

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