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

✎ 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
35746322 GT-AG 0 1.000000099473604e-05 2025 rna-XM_008048036.1 6866776 1 28414 30438 Carlito syrichta 1868482 ATG|GTAAGTTGAA...GTTGCTTTCATT/GTTGCTTTCATT...AATAG|GTG 1 1 5.086
35746323 GT-AG 0 1.7108397339238117e-05 14475 rna-XM_008048036.1 6866776 2 30598 45072 Carlito syrichta 1868482 TTA|GTAAGTACCT...TATACCTAAATA/TTATACCTAAAT...TTTAG|ACT 1 1 12.938
35746324 GT-AG 0 1.000000099473604e-05 12293 rna-XM_008048036.1 6866776 3 45174 57466 Carlito syrichta 1868482 CAG|GTAAGAATTT...GGCTCTTTTATG/AAAGTAATGATC...TATAG|ACA 0 1 17.926
35746325 GT-AG 0 0.0064380893726104 2420 rna-XM_008048036.1 6866776 4 57617 60036 Carlito syrichta 1868482 CAG|GTATTTACCA...TTTTTTTTAATC/TTTTTTTTAATC...AATAG|ATA 0 1 25.333
35746326 GT-AG 0 1.000000099473604e-05 4075 rna-XM_008048036.1 6866776 5 60130 64204 Carlito syrichta 1868482 AGA|GTAAGAAACG...ATAATTTTAATT/ATAATTTTAATT...TTTAG|ATC 0 1 29.926
35746327 GT-AG 0 0.0112766256308803 8860 rna-XM_008048036.1 6866776 6 64389 73248 Carlito syrichta 1868482 CAG|GTATTTTATT...AGCCTTTTAATT/TAGATGCTAATT...ATTAG|GAA 1 1 39.012
35746328 GT-AG 0 7.030619886500247e-05 5430 rna-XM_008048036.1 6866776 7 73413 78842 Carlito syrichta 1868482 CCA|GTAAGTACTG...AAAACCTTATTT/CCTTATTTTATT...GACAG|CAT 0 1 47.111
35746329 GT-AG 0 0.003961732702228 4180 rna-XM_008048036.1 6866776 8 79027 83206 Carlito syrichta 1868482 TTG|GTATGTATCT...CTTACCTTGTCT/ATAGTGCTTACC...CTCAG|AAT 1 1 56.198
35746330 GT-AG 0 0.0684675982626517 9847 rna-XM_008048036.1 6866776 9 83358 93204 Carlito syrichta 1868482 CAG|GTACCTTGCT...CTTTGCTTAATC/TAGTAATTTACT...TTTAG|TCC 2 1 63.654
35746331 GT-AG 0 0.0002072393398418 698 rna-XM_008048036.1 6866776 10 93389 94086 Carlito syrichta 1868482 GGG|GTAAGCATTT...TGCCTTTTATTT/TTGCCTTTTATT...TCCAG|CAA 0 1 72.741
35746332 GT-AG 0 1.000000099473604e-05 473 rna-XM_008048036.1 6866776 11 94196 94668 Carlito syrichta 1868482 AAA|GTAAGACTTT...TTATTTTTGACA/TTATTTTTGACA...TCCAG|TGG 1 1 78.123
35746333 GT-AG 0 1.000000099473604e-05 10013 rna-XM_008048036.1 6866776 12 94890 104902 Carlito syrichta 1868482 GTG|GTAAGTATGG...AATATTTTATAG/GTTTTTTTCAGT...TCTAG|GCT 0 1 89.037
35746334 GT-AG 0 1.000000099473604e-05 2427 rna-XM_008048036.1 6866776 13 105030 107456 Carlito syrichta 1868482 CAG|GTAAGAATCT...TTTGCTTTTGTT/AAAAAACTTATG...TCAAG|GCA 1 1 95.309

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