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

✎ 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
117999982 GT-AG 0 1.000000099473604e-05 63882 rna-XM_013347205.2 21796682 2 60409787 60473668 Microtus ochrogaster 79684 AAG|GTAAGGCAGG...TTGCTTTTCTTT/GCGGCCCTCACG...TGCAG|GAC 0 1 5.013
117999983 GT-AG 0 1.000000099473604e-05 9891 rna-XM_013347205.2 21796682 3 60399644 60409534 Microtus ochrogaster 79684 GAG|GTAAGCGGCC...ATGCCCTTATTG/CCCTTATTGACA...TCCAG|GGC 0 1 7.406
117999984 GT-AG 0 7.740950611953419e-05 20979 rna-XM_013347205.2 21796682 4 60376907 60397885 Microtus ochrogaster 79684 GAG|GTAAGCTTGG...ATTCTCTTCTCC/CATCAACTAATT...CACAG|GGC 0 1 24.098
117999985 GT-AG 0 3.265456647810117e-05 16747 rna-XM_013347205.2 21796682 5 60360037 60376783 Microtus ochrogaster 79684 TTG|GTAGGCATGG...TTGTGCATGACC/GACCGCCTCACT...TGCAG|AGT 0 1 25.266
117999986 GT-AG 0 1.000000099473604e-05 1122 rna-XM_013347205.2 21796682 6 60358818 60359939 Microtus ochrogaster 79684 CAG|GTAAATCCTC...TTTGCTTTCCTT/GCGGGACCCACA...TGGAG|AAG 1 1 26.187
117999987 GT-AG 0 1.000000099473604e-05 59631 rna-XM_013347205.2 21796682 7 60299020 60358650 Microtus ochrogaster 79684 AAG|GTAAGTGGCT...TCCTGCTGGACT/GCTGGACTAAGA...TGCAG|GCT 0 1 27.773
117999988 GT-AG 0 1.000000099473604e-05 17517 rna-XM_013347205.2 21796682 8 60281354 60298870 Microtus ochrogaster 79684 TGG|GTAAGGGACT...TACACTGTATTT/TTGTGCCTCATC...TCCAG|GCT 2 1 29.187
117999989 GT-AG 0 1.000000099473604e-05 37372 rna-XM_013347205.2 21796682 9 60243861 60281232 Microtus ochrogaster 79684 AAG|GTTAGAGCCA...CGTCCCCTAATG/GTTTTCCCCATC...TTCAG|CGG 0 1 30.336
117999990 GT-AG 0 0.0021537512525162 2958 rna-XM_013347205.2 21796682 10 60240756 60243713 Microtus ochrogaster 79684 GGG|GTATTTGCAT...TTCTTCTTACTT/TTTCTTCTTACT...ATTAG|AAA 0 1 31.732
117999991 GT-AG 0 1.000000099473604e-05 28891 rna-XM_013347205.2 21796682 11 60211643 60240533 Microtus ochrogaster 79684 AAG|GTAATAATTA...GCCTCCTTCTCT/GTCCTCCTAACG...TGCAG|TCT 0 1 33.84
117999992 GT-AG 0 1.000000099473604e-05 29800 rna-XM_013347205.2 21796682 12 60181627 60211426 Microtus ochrogaster 79684 CCC|GTGAGTGTCA...CTCTCCTCCCTT/CTCTCTCTCTCT...CACAG|GAG 0 1 35.891
118006193 GT-AG 0 1.000000099473604e-05 83695 rna-XM_013347205.2 21796682 1 60474030 60557724 Microtus ochrogaster 79684 ATG|GTGAGTGTTA...GCTTTCTTATTT/TGCTTTCTTATT...TTCAG|CTG   0 1.908
118006194 GT-AG 0 5.193704976808955e-05 4943 rna-XM_013347205.2 21796682 13 60173277 60178219 Microtus ochrogaster 79684 AAG|GTATGTACGA...GTCACCTTTTTG/ATTCCTGTCACC...CCTAG|AGC   0 68.24

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