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)

11 rows where transcript_id = 21796710

✎ 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
118000746 GT-AG 0 1.000000099473604e-05 3606 rna-XM_005343655.3 21796710 2 23092888 23096493 Microtus ochrogaster 79684 ATG|GTAAGTACGA...TTTTCTTTCTTT/TGTATGTTGAGT...TGTAG|GGG 1 1 75.164
118000747 GT-AG 0 1.000000099473604e-05 2579 rna-XM_005343655.3 21796710 3 23090133 23092711 Microtus ochrogaster 79684 GGG|GTGCGTTCTG...CAGACATTAAAA/TAAAAGTTAAAT...CCTAG|GTT 0 1 79.149
118000748 GT-AG 0 1.000000099473604e-05 1970 rna-XM_005343655.3 21796710 4 23088058 23090027 Microtus ochrogaster 79684 CAG|GTAAGTCAGC...TAAGCCTTGGCT/CCTTGGCTAATT...GGCAG|GTT 0 1 81.526
118000749 GT-AG 0 1.000000099473604e-05 6516 rna-XM_005343655.3 21796710 5 23081469 23087984 Microtus ochrogaster 79684 CAG|GTGAGCACGG...ACACCATTAACC/ACACCATTAACC...TGTAG|GTG 1 1 83.179
118000750 GT-AG 0 1.3972475685880256e-05 2583 rna-XM_005343655.3 21796710 6 23078814 23081396 Microtus ochrogaster 79684 CTG|GTAAGCCTCG...TTCTCGTTCACC/TTCTCGTTCACC...CATAG|ACT 1 1 84.809
118000751 GT-AG 0 1.000000099473604e-05 2006 rna-XM_005343655.3 21796710 7 23076696 23078701 Microtus ochrogaster 79684 ACG|GTCAGTAACA...ACGTTCTTACAT/CACGTTCTTACA...TTTAG|GTC 2 1 87.344
118000752 GT-AG 0 1.000000099473604e-05 4960 rna-XM_005343655.3 21796710 8 23071576 23076535 Microtus ochrogaster 79684 GAG|GTGAGATGCA...CTCCTTTTGGTT/AATAGATTCATG...TATAG|GAA 0 1 90.967
118000753 GT-AG 0 0.0002174440421632 89 rna-XM_005343655.3 21796710 9 23071463 23071551 Microtus ochrogaster 79684 GAG|GTAAGCTTTT...CTTCTGTTAATA/CATTACTTCATT...TGTAG|CTG 0 1 91.51
118000754 GT-AG 0 1.000000099473604e-05 2687 rna-XM_005343655.3 21796710 10 23068697 23071383 Microtus ochrogaster 79684 ATG|GTAAGAGCCT...CACACTATGACT/TTGGTTCTCACC...TTTAG|GGG 1 1 93.299
118000755 GT-AG 0 0.0037524561276077 1677 rna-XM_005343655.3 21796710 11 23066868 23068544 Microtus ochrogaster 79684 ACG|GTACCGTGAT...CTATTGTTAATT/CTATTGTTAATT...CATAG|GTA 0 1 96.74
118006228 GT-AG 0 1.000000099473604e-05 1359 rna-XM_005343655.3 21796710 1 23099792 23101150 Microtus ochrogaster 79684 GAG|GTGAAGGGGG...TGATCTTTGTTT/CGAGGTTTGATA...CATAG|GTA   0 1.924

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