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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
162621360 GC-AG 0 1.1234670412716731e-05 181 rna-XM_029283590.1 29163157 1 133775 133955 Protobothrops mucrosquamatus 103944 TCG|GCATGTCTCA...GAAATCTGATCT/AGAAATCTGATC...TGAAG|GAA 2 1 4.043
162621361 GT-AG 0 1.000000099473604e-05 13839 rna-XM_029283590.1 29163157 2 134320 148158 Protobothrops mucrosquamatus 103944 AAG|GTAAGTCCAG...GAAACCTTGACC/GAAACCTTGACC...CATAG|GAA 0 1 21.157
162621362 GT-AG 0 1.000000099473604e-05 969 rna-XM_029283590.1 29163157 3 148226 149194 Protobothrops mucrosquamatus 103944 CAG|GTTAGATATC...AAATCATTGATT/ATTCTTTTCACT...TCTAG|ATG 1 1 24.307
162621363 GT-AG 0 0.0077514031845482 2748 rna-XM_029283590.1 29163157 4 149616 152363 Protobothrops mucrosquamatus 103944 CAA|GTATGTTTTC...TTCTCTACAATG/GAATAATTTACG...TCTAG|GCA 2 1 44.1
162621364 TT-AT 0 1.000000099473604e-05 2487 rna-XM_029283590.1 29163157 5 152651 155137 Protobothrops mucrosquamatus 103944 AGC|TTTAAAAATA...TTGTGTTTATCA/TTTGTGTTTATC...ACTAT|CAA 1 1 57.593
162621365 GT-AG 0 1.000000099473604e-05 804 rna-XM_029283590.1 29163157 6 155232 156035 Protobothrops mucrosquamatus 103944 AGG|GTAAGTTGAG...TTTTCTTTTTCT/CCTGAATTCAAT...TCTAG|TGG 2 1 62.012
162621366 GT-AG 0 1.000000099473604e-05 1484 rna-XM_029283590.1 29163157 7 156130 157613 Protobothrops mucrosquamatus 103944 AAG|GTAAGTGGGC...TTTTTTTTTTCT/ATTCTCCTCAAG...TGCAG|GAT 0 1 66.432
162621367 GT-AG 0 0.0045125144565635 1371 rna-XM_029283590.1 29163157 8 157724 159094 Protobothrops mucrosquamatus 103944 ATA|GTATGTATCA...AAATTTTAAGCA/GAAATTTTAAGC...TTCAG|TGT 2 1 71.603
162621368 GT-AG 0 1.000000099473604e-05 4480 rna-XM_029283590.1 29163157 9 159237 163716 Protobothrops mucrosquamatus 103944 AAG|GTTCTGTGCA...GCACTTTTATTT/CCATTTCTCATA...GACAG|CCT 0 1 78.279
162621369 GT-AG 0 0.0029001008715334 942 rna-XM_029283590.1 29163157 10 163788 164729 Protobothrops mucrosquamatus 103944 AAG|GTATGTTGTT...TTTTTTTTTTCT/CTTTTTCCCATG...CTTAG|ATA 2 1 81.617
162621370 GT-AG 0 4.522648584924884e-05 2772 rna-XM_029283590.1 29163157 11 164859 167630 Protobothrops mucrosquamatus 103944 GTT|GTAAGTTGAA...TTATGTTTAATG/TTATGTTTAATG...TATAG|GAT 2 1 87.682
162621371 GT-AG 0 1.000000099473604e-05 1233 rna-XM_029283590.1 29163157 12 167784 169016 Protobothrops mucrosquamatus 103944 ATG|GTAATTACAC...TTGTTCTTTCCT/ATACATGTCACC...TTTAG|CTG 2 1 94.875
162621372 GT-AG 0 1.000000099473604e-05 951 rna-XM_029283590.1 29163157 13 169096 170046 Protobothrops mucrosquamatus 103944 AAG|GTCTGTAGAT...TTTATTTTATCT/ATTTATTTTATC...TGTAG|AAG 0 1 98.59

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