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

✎ 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
88157915 GT-AG 0 1.000000099473604e-05 975 rna-XM_044681120.1 16590267 1 364465464 364466438 Gracilinanus agilis 191870 ATG|GTGGGGGGCT...TGTTCTCTAATT/TGTTCTCTAATT...CCTAG|AGC 1 1 0.503
88157916 GT-AG 0 1.000000099473604e-05 96757 rna-XM_044681120.1 16590267 2 364466706 364563462 Gracilinanus agilis 191870 CCG|GTAAGTGTGA...ATCTCCTTCATT/ATCTCCTTCATT...CACAG|CCC 1 1 3.859
88157917 GT-AG 0 0.0105501323656336 1503 rna-XM_044681120.1 16590267 3 364563984 364565486 Gracilinanus agilis 191870 TTG|GTAACTTGAG...CACCTCTTAGCT/TTTTTTTCCACT...TACAG|GCT 0 1 10.407
88157918 GT-AG 0 0.2816012254485942 12931 rna-XM_044681120.1 16590267 4 364565518 364578448 Gracilinanus agilis 191870 TGG|GTATTCCTCA...ATCTTTTTAATT/ATCTTTTTAATT...TACAG|CAT 1 1 10.797
88157919 GT-AG 0 1.000000099473604e-05 994 rna-XM_044681120.1 16590267 5 364578613 364579606 Gracilinanus agilis 191870 CAG|GTGCATTTAA...TAATTCTCATCT/CTAATTCTCATC...TCCAG|GTG 0 1 12.858
88157920 GT-AG 0 0.0015162977663779 2020 rna-XM_044681120.1 16590267 6 364583162 364585181 Gracilinanus agilis 191870 CAG|GTATGTTTGA...GATTCTTTTGTG/TGTATATTTAAA...TTGAG|GCT 0 1 57.541
88157921 GT-AG 0 1.000000099473604e-05 1436 rna-XM_044681120.1 16590267 7 364585650 364587085 Gracilinanus agilis 191870 CAG|GTAAGGACAT...GTTCGCTTATTT/AGTTCGCTTATT...CTTAG|GTG 0 1 63.424
88157922 GT-AG 0 1.000000099473604e-05 13179 rna-XM_044681120.1 16590267 8 364587263 364600441 Gracilinanus agilis 191870 CGG|GTAAGTACTC...GTATTTTTATTT/GGTATTTTTATT...TTAAG|GTC 0 1 65.649
88157923 GT-AG 0 0.0001205515339305 3201 rna-XM_044681120.1 16590267 9 364600641 364603841 Gracilinanus agilis 191870 CTG|GTATGTAGCA...TTGTTGTTGATT/TTGTTGTTGATT...TACAG|GAG 1 1 68.15
88157924 GT-AG 0 1.000000099473604e-05 19747 rna-XM_044681120.1 16590267 10 364603974 364623720 Gracilinanus agilis 191870 CAG|GTAAGACTTT...GCATTTTTATCT/TGCATTTTTATC...CTTAG|GTT 1 1 69.809
88157925 GT-AG 0 1.4909318915222326e-05 24687 rna-XM_044681120.1 16590267 11 364623894 364648580 Gracilinanus agilis 191870 GCG|GTAAGTACCC...TTCTTCTTGAAT/CAATGGCTGATT...AACAG|GTC 0 1 71.983
88157926 GT-AG 0 1.000000099473604e-05 2727 rna-XM_044681120.1 16590267 12 364648765 364651491 Gracilinanus agilis 191870 CAG|GTAAAGTGAC...CCATTCTTTTCT/TCTGTTCTAATA...TATAG|GAG 1 1 74.296

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