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)

10 rows where transcript_id = 15319349

✎ 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
82923902 GT-AG 0 1.000000099473604e-05 134 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 1 1890025 1890158 Glareola pratincola 43316 AAG|GTAGTTTAAT...GCTGTCTTGTTC/GTGTGTGTGACA...TTCAG|TCC 2 1 11.939
82923903 GT-AG 0 3.1567354925197256e-05 2464 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 2 1890249 1892712 Glareola pratincola 43316 AGC|GTTCATCCAG...AAAATTTTATCT/TAAAATTTTATC...CAAAG|GGA 2 1 22.577
82923904 GT-AG 0 2.8032473673468984e-05 103 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 3 1892795 1892897 Glareola pratincola 43316 AGG|GTACATATCG...CTTTGCTTGCTG/ACTGTATTTATG...TGCAG|GCA 0 1 32.27
82923905 GT-AG 0 0.0001007935772364 1882 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 4 1892932 1894813 Glareola pratincola 43316 GAG|GTATGTGCTG...GATCTGTTAACT/GATCTGTTAACT...TGTAG|GAG 1 1 36.288
82923906 GT-AG 0 1.000000099473604e-05 108 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 5 1894894 1895001 Glareola pratincola 43316 GAA|GTAAGTCACC...TTGCACTTAATG/TTTGCACTTAAT...TTCAG|GCC 0 1 45.745
82923907 GT-AG 0 0.0006033662633962 205 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 6 1895071 1895275 Glareola pratincola 43316 CAG|GTAACTCTGC...TTCCTCATGATT/GTTTTCCTCATG...TGCAG|CTG 0 1 53.901
82923908 GT-AG 0 0.0001024169695252 102 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 7 1895357 1895458 Glareola pratincola 43316 TCA|GTAAGTTGGG...ATGCCATTATCT/CATTATCTAAAT...TTTAG|ATT 0 1 63.475
82923909 GT-AG 0 1.000000099473604e-05 7466 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 8 1895520 1902985 Glareola pratincola 43316 GAG|GTAAGTTTCC...CTATTTTTCACA/CTATTTTTCACA...TACAG|AAT 1 1 70.686
82923910 GT-AG 0 0.0004107817207187 2245 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 9 1903085 1905329 Glareola pratincola 43316 TCA|GTAAGTTTGC...TCATCCGTAACA/CTTTTTTTCATC...TTCAG|GTG 1 1 82.388
82923911 GT-AG 0 1.000000099473604e-05 1131 rna-gnl|WGS:VWPO|GLAPRA_R00045_mrna 15319349 10 1905400 1906530 Glareola pratincola 43316 ACA|GTAAGTATTG...TGACACTAAAAA/ATGACACTAAAA...TTTAG|GGT 2 1 90.662

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