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)

13 rows where transcript_id = 23148231

✎ 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
125871197 GT-AG 0 1.000000099473604e-05 244 rna-XM_037678876.1 23148231 1 22993945 22994188 Nematolebias whitei 451745 AGG|GTAAATGTGA...ATTTTCTTCACA/ATTTTCTTCACA...TGTAG|CTA 2 1 3.085
125871198 GT-AG 0 1.000000099473604e-05 112 rna-XM_037678876.1 23148231 2 22993160 22993271 Nematolebias whitei 451745 CAG|GTGAGCATTG...CCTCTTTTGAGT/AATCATCTCATA...TTTAG|GTC 0 1 16.478
125871199 GT-AG 0 0.0004628299478255 2826 rna-XM_037678876.1 23148231 3 22987626 22990451 Nematolebias whitei 451745 CAG|GTAACTAAAC...TAAATCTTATTA/GTAAATCTTATT...GCCAG|ATG 2 1 70.368
125871200 GT-AG 0 1.000000099473604e-05 284 rna-XM_037678876.1 23148231 4 22987107 22987390 Nematolebias whitei 451745 CAG|GTAGGAAACA...TTTACTTTAATG/ACTTGTTTTATG...ATAAG|ATG 0 1 75.045
125871201 GT-AG 0 1.000000099473604e-05 5352 rna-XM_037678876.1 23148231 5 22981599 22986950 Nematolebias whitei 451745 AAG|GTGCTCATCA...CTGTGCTGAGCT/GCTGAGCTCATC...CTCAG|GGA 0 1 78.149
125871202 GT-AG 0 0.0003123820088032 390 rna-XM_037678876.1 23148231 6 22981145 22981534 Nematolebias whitei 451745 TTG|GTAGGTTTTG...GTTTACTTAAAC/GGTTTACTTAAA...GTCAG|CAG 1 1 79.423
125871203 GT-AG 0 1.000000099473604e-05 3509 rna-XM_037678876.1 23148231 7 22977450 22980958 Nematolebias whitei 451745 AAG|GTGGGAAGCT...TTTCTCGTGACC/TGCAACTTCATC...CTCAG|TGG 1 1 83.124
125871204 GT-AG 0 1.000000099473604e-05 2332 rna-XM_037678876.1 23148231 8 22974941 22977272 Nematolebias whitei 451745 AAG|GTGAGAAGTC...AACACTTTAATC/AACACTTTAATC...CACAG|CGA 1 1 86.647
125871205 GT-AG 0 1.000000099473604e-05 2902 rna-XM_037678876.1 23148231 9 22971856 22974757 Nematolebias whitei 451745 AAC|GTAGGTATCA...GGGTCGTTCCAT/CGGTGAGTAACC...TGCAG|GGG 1 1 90.289
125871206 GT-AG 0 1.000000099473604e-05 2156 rna-XM_037678876.1 23148231 10 22969529 22971684 Nematolebias whitei 451745 GAG|GTAGAAAGGA...TCCATCTGAATT/ATGCACCTAACT...TTCAG|CGG 1 1 93.692
125871207 GT-AG 0 1.1523168859113198e-05 1245 rna-XM_037678876.1 23148231 11 22968188 22969432 Nematolebias whitei 451745 AGC|GTAAGTGTGA...CTGTCCTTTCAT/TTTACACTCAAC...ACCAG|CTA 1 1 95.602
125871208 GT-AG 0 1.000000099473604e-05 2169 rna-XM_037678876.1 23148231 12 22965923 22968091 Nematolebias whitei 451745 CAG|GTGAGTTTAT...TGTTCCTGATCT/TTGTTCCTGATC...TGCAG|CTG 1 1 97.512
125871209 GT-AG 0 1.000000099473604e-05 5732 rna-XM_037678876.1 23148231 13 22960097 22965828 Nematolebias whitei 451745 CAG|GTGATGACCC...CTTTGTGTAACC/CTTTGTGTAACC...TACAG|GAA 2 1 99.383

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