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

✎ 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
8696182 GT-AG 0 1.000000099473604e-05 1437 rna-XM_020234741.1 1565104 1 3581289 3582725 Ananas comosus 4615 GAG|GTTCGGCCCT...TTTGTCTTATTA/ATTTGTCTTATT...TTCAG|ATA 1 1 3.333
8696183 GT-AG 0 1.000000099473604e-05 333 rna-XM_020234741.1 1565104 2 3580856 3581188 Ananas comosus 4615 GAT|GTAAGATATC...AGTTTTATAGCT/TGCAGTTTTATA...TGCAG|GCA 2 1 5.784
8696184 GT-AG 0 1.000000099473604e-05 2460 rna-XM_020234741.1 1565104 3 3578287 3580746 Ananas comosus 4615 CAG|GTATTAGATT...TTTTCTTTCGAT/ACTAAATTTATC...TGCAG|GAA 0 1 8.456
8696185 GT-AG 0 0.0001854653418406 1320 rna-XM_020234741.1 1565104 4 3575485 3576804 Ananas comosus 4615 CAG|GTATATCACA...ATTCATTTGATT/ATTCATTTGATT...ATCAG|GTG 0 1 44.779
8696186 GT-AG 0 1.000000099473604e-05 160 rna-XM_020234741.1 1565104 5 3575082 3575241 Ananas comosus 4615 CAG|GTATTGAACC...ATGCTATTATCC/AAAAGTCTCAGT...TATAG|GTT 0 1 50.735
8696187 GT-AG 0 0.0295393377965527 986 rna-XM_020234741.1 1565104 6 3573784 3574769 Ananas comosus 4615 CAA|GTATGTTCCA...CGGATCTTAAAT/TAATGTTTCACA...CTCAG|GCA 0 1 58.382
8696188 GT-AG 0 7.535605679172844e-05 578 rna-XM_020234741.1 1565104 7 3572966 3573543 Ananas comosus 4615 AAA|GTACTGATTT...TTTTTTATAATT/TTAAATTTCATT...TTCAG|GTT 0 1 64.265
8696189 GT-AG 0 1.000000099473604e-05 93 rna-XM_020234741.1 1565104 8 3572588 3572680 Ananas comosus 4615 CGG|GTAATTAGTA...TTGTTTTTCATC/TTGTTTTTCATC...TTCAG|GAG 0 1 71.25
8696190 GT-AG 0 0.0019019569939199 928 rna-XM_020234741.1 1565104 9 3571438 3572365 Ananas comosus 4615 CAG|GTATTCAAGG...TTTCCCTTGTTA/TGTTATTTGATT...TACAG|GCT 0 1 76.691
8696191 GT-AG 0 1.000000099473604e-05 80 rna-XM_020234741.1 1565104 10 3571196 3571275 Ananas comosus 4615 AAG|GTCAGTATTA...TTTATGTTATTA/TTTTATGTTATT...TGTAG|GTT 0 1 80.662
8696192 GT-AG 0 0.0002079017952624 259 rna-XM_020234741.1 1565104 11 3570802 3571060 Ananas comosus 4615 CAG|GTATTGCCTT...TTATTTTTATTT/ATTATTTTTATT...TCCAG|TTA 0 1 83.971
8696193 GT-AG 0 0.1618848794304147 183 rna-XM_020234741.1 1565104 12 3570382 3570564 Ananas comosus 4615 CAG|GTACCTTAGA...CCTTTTTTAACC/CCTTTTTTAACC...TGCAG|ATT 0 1 89.779
8696194 GT-AG 0 1.000000099473604e-05 571 rna-XM_020234741.1 1565104 13 3569637 3570207 Ananas comosus 4615 AAG|GTAATGGCTT...TGTTCTTTAACT/CTTTTACTGATA...TGCAG|GGT 0 1 94.044

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