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

✎ 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
19713018 GT-AG 0 0.0024520459733156 6651 rna-XM_032208120.1 3854211 2 175677157 175683807 Aythya fuligula 219594 AAG|GTAACTCATT...TTTGTCTTATTT/ATTTGTCTTATT...TTCAG|AGT 0 1 1.948
19713019 GT-AG 0 3.54058374409502e-05 3714 rna-XM_032208120.1 3854211 3 175683925 175687638 Aythya fuligula 219594 GAG|GTTTGGCTTA...GTTTCTTTAATA/CATGTGTTTATT...TACAG|ATT 0 1 3.913
19713020 GT-AG 0 1.2239441059894434e-05 1370 rna-XM_032208120.1 3854211 4 175687687 175689056 Aythya fuligula 219594 CAG|GTATGGCATG...TTTCACTTAGTT/GTTTTTTTCACT...ATCAG|GAG 0 1 4.72
19713021 GT-AG 0 1.000000099473604e-05 888 rna-XM_032208120.1 3854211 5 175689183 175690070 Aythya fuligula 219594 CAG|GTAAATATTT...GTTTTCTTGTTG/AAGTTATTCAAA...TCAAG|AAT 0 1 6.836
19713022 GT-AG 0 1.314495147880565e-05 461 rna-XM_032208120.1 3854211 6 175690336 175690796 Aythya fuligula 219594 TTG|GTAAGTTATT...TGGGTTTTGAAG/TGGGTTTTGAAG...TTCAG|GTA 1 1 11.287
19713023 GT-AG 0 1.000000099473604e-05 2391 rna-XM_032208120.1 3854211 7 175695454 175697844 Aythya fuligula 219594 AAG|GTAATAATAA...TTTGTCTTAAAT/TTTTGTCTTAAA...TTTAG|CTC 2 1 89.503
19713024 GT-AG 0 0.0001525073436003 4447 rna-XM_032208120.1 3854211 8 175698001 175702447 Aythya fuligula 219594 CAG|GTAACTATGA...CTAGTTTGAGCT/TCTAGTTTGAGC...TCTAG|TTC 2 1 92.123
19713025 GT-AG 0 1.000000099473604e-05 745 rna-XM_032208120.1 3854211 9 175702562 175703306 Aythya fuligula 219594 CAG|GTTGGTTGAG...TATATTTTAAAA/ACTATATTTATT...TACAG|TGA 2 1 94.038
19713026 GT-AG 0 1.000000099473604e-05 2017 rna-XM_032208120.1 3854211 10 175703354 175705370 Aythya fuligula 219594 AAG|GTAATGTCAG...TATTTTTTAATA/ATTTTTTTTATA...TTTAG|GTT 1 1 94.827
19713027 GT-AG 0 1.000000099473604e-05 5434 rna-XM_032208120.1 3854211 11 175705532 175710965 Aythya fuligula 219594 CTG|GTAAGTGCTT...AATATTTTATGT/AAATATTTTATG...TTTAG|CTT 0 1 97.531
19730959 GT-AG 0 1.000000099473604e-05 4203 rna-XM_032208120.1 3854211 1 175672850 175677052 Aythya fuligula 219594 CAG|GTACGGGCCG...GGAACCATAAAA/ATAAAAATAATC...TGTAG|GTA   0 0.941

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