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

✎ 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
72997182 GT-AG 0 1.000000099473604e-05 70000 rna-XM_016185164.1 13705550 3 16014048 16084047 Erinaceus europaeus 9365 AAG|GTAAGCGGAT...AAGCCCCTGACT/AAGGCACTGACT...CACAG|GCA 1 1 14.274
72997183 GT-AG 0 0.0079304392478685 4688 rna-XM_016185164.1 13705550 4 16009168 16013855 Erinaceus europaeus 9365 AAG|GTACCCAACC...GTACCCATGCCC/CCCATGCTCAAG...TGCAG|AGA 1 1 21.866
72997184 GT-AG 0 1.000000099473604e-05 20935 rna-XM_016185164.1 13705550 5 15988014 16008948 Erinaceus europaeus 9365 CAG|GTGAGTGGCA...CAGCCCTTGTGT/TCCCGTGTCACC...CCCAG|GTC 1 1 30.526
72997185 GT-AG 0 1.000000099473604e-05 1974 rna-XM_016185164.1 13705550 6 15985938 15987911 Erinaceus europaeus 9365 TGG|GTAAGGCCCA...CTCTCCTCTGTT/CCCTGCCTCAGG...TGCAG|GAA 1 1 34.559
72997186 GT-AG 0 1.000000099473604e-05 1576 rna-XM_016185164.1 13705550 7 15984234 15985809 Erinaceus europaeus 9365 GAG|GTGGGTACCC...CCCTCTGTGCCA/CAGCTGCTGACC...CGGAG|GAG 0 1 39.62
72997187 GT-AG 0 1.000000099473604e-05 206 rna-XM_016185164.1 13705550 8 15983936 15984141 Erinaceus europaeus 9365 GGG|GTAAGTTCTG...CCATCCCTGGTT/GTTCCGGTCACT...CCCAG|CGT 2 1 43.258
72997188 GT-AG 0 1.000000099473604e-05 1627 rna-XM_016185164.1 13705550 9 15982181 15983807 Erinaceus europaeus 9365 AAG|GTGAGCCACA...TGCCCCTCACCC/GTGCCCCTCACC...TGCAG|CCT 1 1 48.319
72997189 GT-AG 0 1.000000099473604e-05 6609 rna-XM_016185164.1 13705550 10 15975422 15982030 Erinaceus europaeus 9365 AAG|GTAAGAGGTG...GCCCCTCTGTCC/CCCGGGGTCACA...TGCAG|CCG 1 1 54.251
72997190 GT-AG 0 1.000000099473604e-05 83 rna-XM_016185164.1 13705550 11 15975224 15975306 Erinaceus europaeus 9365 GCA|GTGAGCCCCG...AGGGCGCTGACC/AGGGCGCTGACC...GCCAG|CCT 2 1 58.798
72997191 GT-AG 0 1.000000099473604e-05 129 rna-XM_016185164.1 13705550 12 15974916 15975044 Erinaceus europaeus 9365 CGA|GTGCGGGTGT...TCCTCCTTTCTG/TGCGCTATTATT...TCCAG|GAG 1 1 65.876
72997794 GT-AG 0 1.000000099473604e-05 35934 rna-XM_016185164.1 13705550 1 16087740 16123673 Erinaceus europaeus 9365 AAG|GTGAGTCTGT...AAACTCTTGTTC/TTGTTCCCCACT...ACCAG|GTG   0 4.547
72997795 GT-AG 0 1.000000099473604e-05 3442 rna-XM_016185164.1 13705550 2 16084203 16087644 Erinaceus europaeus 9365 CAG|GTCAGTCACT...ACTGCCTTTCCA/TCTCTCGTCACT...TGCAG|ATG   0 8.304

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