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

✎ 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
118001729 GT-AG 0 1.000000099473604e-05 1812 rna-XM_013355200.2 21796764 2 4125158 4126969 Microtus ochrogaster 79684 GAG|GTTAGTTTAA...GTTTCTATAAAT/CTTTTTTCCATA...GACAG|AGC 1 1 21.982
118001730 GT-AG 0 1.000000099473604e-05 3282 rna-XM_013355200.2 21796764 3 4121427 4124708 Microtus ochrogaster 79684 CAG|GTAGGAAGAC...TGTTCTTTGTTT/CTTTGTTTTATG...ATTAG|GTA 0 1 36.475
118001731 GT-AG 0 0.0005800800609999 2207 rna-XM_013355200.2 21796764 4 4119146 4121352 Microtus ochrogaster 79684 GGT|GTAAGTATAA...CTGACCTTAATA/AATATGCTGACC...CCTAG|AGA 2 1 38.864
118001732 GT-AG 0 1.000000099473604e-05 2148 rna-XM_013355200.2 21796764 5 4116867 4119014 Microtus ochrogaster 79684 CAG|GTAAATGGGT...TTTTCTTTTGTA/TATGTATTTATT...AATAG|GTT 1 1 43.092
118001733 GT-AG 0 1.000000099473604e-05 1192 rna-XM_013355200.2 21796764 6 4115587 4116778 Microtus ochrogaster 79684 AAG|GTAAAGTGTC...GTTTTTTTGAGA/GTTTTTTTGAGA...TTTAG|GGC 2 1 45.933
118001734 GT-AG 0 0.0606082099001746 7051 rna-XM_013355200.2 21796764 7 4108387 4115437 Microtus ochrogaster 79684 TGG|GTATGTTTGA...GTTGTTTTATTT/GGTTGTTTTATT...TAAAG|AGA 1 1 50.742
118001735 GT-AG 0 4.869729965923169e-05 2122 rna-XM_013355200.2 21796764 8 4105463 4107584 Microtus ochrogaster 79684 TTG|GTAAGTACTT...TTGTTCTTAACT/TTTTTATTGACT...CATAG|TGC 2 1 76.63
118001736 GT-AG 0 0.0084363456730217 1845 rna-XM_013355200.2 21796764 9 4103445 4105289 Microtus ochrogaster 79684 ATG|GTAACTTATC...GTTTTATTAACT/GTTTTATTAACT...CTTAG|GTG 1 1 82.214
118001737 GT-AG 0 1.000000099473604e-05 2371 rna-XM_013355200.2 21796764 10 4100913 4103283 Microtus ochrogaster 79684 ATG|GTAAGAAGGC...TATTTTGTGATG/AAAATTTTGAGT...CCTAG|CTG 0 1 87.411
118001738 GT-AG 0 1.000000099473604e-05 2201 rna-XM_013355200.2 21796764 11 4098566 4100766 Microtus ochrogaster 79684 AAG|GTAAATGTGA...AACATCTTGATA/ATAATGCTGACT...TACAG|TGA 2 1 92.124
118001739 GT-AG 0 1.000000099473604e-05 3342 rna-XM_013355200.2 21796764 12 4095130 4098471 Microtus ochrogaster 79684 ACA|GTAAGTATGT...TTGCTACTAACA/TTGCTACTAACA...TATAG|GTT 0 1 95.158
118001740 GT-AG 0 0.0004824650732793 165 rna-XM_013355200.2 21796764 13 4094910 4095074 Microtus ochrogaster 79684 AAG|GTATTGTATT...TAATCCTTTGCA/AATGTATTAATC...TACAG|ATT 1 1 96.934
118006261 GT-AG 0 1.000000099473604e-05 3793 rna-XM_013355200.2 21796764 1 4127593 4131385 Microtus ochrogaster 79684 AGG|GTAGGACTGC...GTGTATTTAAGA/AAAAAGTTGATT...TACAG|GTT   0 4.81

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