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

✎ 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
196137477 GT-AG 0 0.0034222715576872 130 rna-XM_025016385.1 34828588 4 127242 127371 Temnothorax curvispinosus 300111 GAG|GTATTCAAAT...TTTACATTAATT/TTTACATTAATT...TGTAG|ATT 0 1 5.894
196137478 GT-AG 0 1.000000099473604e-05 706 rna-XM_025016385.1 34828588 5 126236 126941 Temnothorax curvispinosus 300111 GAA|GTGAGTAATT...ATTGCTTTAACT/ATTTATCTTATT...TACAG|ATT 0 1 8.392
196137479 GT-AG 0 0.0044091166279183 147 rna-XM_025016385.1 34828588 6 125894 126040 Temnothorax curvispinosus 300111 ACG|GTAACTATAG...CATGTCTTATTA/ACATGTCTTATT...TCCAG|TAC 0 1 10.015
196137480 GT-AG 0 7.737880067822293e-05 164 rna-XM_025016385.1 34828588 7 117900 118063 Temnothorax curvispinosus 300111 AAG|GTATTATGAC...AAACTCGTAATT/TTTTTCTATATT...TGTAG|ATC 0 1 75.2
196137481 GT-AG 0 1.000000099473604e-05 455 rna-XM_025016385.1 34828588 8 116071 116525 Temnothorax curvispinosus 300111 CAG|GTTGGTTTGA...TTTCCCGTATAA/ATTATAATTATT...TTCAG|ATG 0 1 86.638
196137482 GT-AG 0 1.000000099473604e-05 93 rna-XM_025016385.1 34828588 9 115803 115895 Temnothorax curvispinosus 300111 TTG|GTAAATCCAA...TTTCCTCTAATA/TTTCCTCTAATA...TGCAG|AGA 1 1 88.095
196137483 GT-AG 0 4.804722995398088e-05 95 rna-XM_025016385.1 34828588 10 115476 115570 Temnothorax curvispinosus 300111 AAA|GTAATATTTT...TTTTTTATGATT/TTTTTTATGATT...CGCAG|ATC 2 1 90.027
196137484 GT-AG 0 1.000000099473604e-05 225 rna-XM_025016385.1 34828588 11 115157 115381 Temnothorax curvispinosus 300111 AGG|GTAAGACAGT...GCTTTGTTAATC/GCTTTGTTAATC...TTCAG|CAC 0 1 90.809
196137485 GT-AG 0 1.000000099473604e-05 281 rna-XM_025016385.1 34828588 12 114327 114607 Temnothorax curvispinosus 300111 ATG|GTAAATACTT...GTGTCTTCATCT/TGTATTTTCATC...TTTAG|TTC 0 1 95.38
196137486 GT-AG 0 1.000000099473604e-05 191 rna-XM_025016385.1 34828588 13 113922 114112 Temnothorax curvispinosus 300111 TAG|GTCAGTCAGA...ACGATGTTAATT/ACGATGTTAATT...TGCAG|GAG 1 1 97.161
196137614 GT-AG 0 0.0011619150717693 100 rna-XM_025016385.1 34828588 1 141529 141628 Temnothorax curvispinosus 300111 AAG|GTAGCTTACG...ACCGTTGTGATT/ACCGTTGTGATT...CGTAG|ATC   0 2.93
196137615 GT-AG 0 6.37067691001144e-05 12358 rna-XM_025016385.1 34828588 2 129026 141383 Temnothorax curvispinosus 300111 CGT|GTAAGTCTCA...CAGTCTCTGACA/ATTTCTCTCATA...CACAG|CTC   0 4.138
196137616 GT-AG 0 1.000000099473604e-05 1389 rna-XM_025016385.1 34828588 3 127549 128937 Temnothorax curvispinosus 300111 TAC|GTAAGGCAAA...GAATATTTGATT/TTTTAATTCAAT...TTCAG|ATC   0 4.87

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