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)

12 rows where transcript_id = 29163117

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
162620993 GT-AG 0 1.000000099473604e-05 16246 rna-XM_029283405.1 29163117 1 33374 49619 Protobothrops mucrosquamatus 103944 CAG|GTAAGTCTGA...GTTTCCTAAATC/TCTGTATTTATA...TGTAG|ATA 1 1 5.945
162620994 GT-AG 0 1.000000099473604e-05 531 rna-XM_029283405.1 29163117 3 32668 33198 Protobothrops mucrosquamatus 103944 CAG|GTTCTTGTTA...TATCTTTCAACT/TTTCAACTGATC...TTTAG|GTG 0 1 22.807
162620995 GT-AG 0 0.0001397039714288 1746 rna-XM_029283405.1 29163117 4 30910 32655 Protobothrops mucrosquamatus 103944 GAG|GTAACACTAT...TCTATTTTGATT/AATGTTTTCACT...TTTAG|TTA 0 1 23.977
162620996 GT-AG 0 0.0972335342545662 3948 rna-XM_029283405.1 29163117 5 26756 30703 Protobothrops mucrosquamatus 103944 TCT|GTATGTATCT...TTCTTTTTGAAA/ATTTTTCTTAAT...TACAG|AGA 2 1 44.055
162620997 GT-AG 0 1.000000099473604e-05 926 rna-XM_029283405.1 29163117 6 25793 26718 Protobothrops mucrosquamatus 103944 GAG|GTAAATAAAT...CCTTCTTTAGTA/ATTCTGTTTACA...TTTAG|CCT 0 1 47.661
162620998 GT-AG 0 1.000000099473604e-05 2314 rna-XM_029283405.1 29163117 7 23416 25729 Protobothrops mucrosquamatus 103944 GAG|GTAAGAGACA...ATCTCTTTGATC/TTGCTTTTTATT...TGCAG|GAG 0 1 53.801
162620999 GT-AG 0 3.024148886587636e-05 1002 rna-XM_029283405.1 29163117 8 22356 23357 Protobothrops mucrosquamatus 103944 AAA|GTAAGTTGCA...TCTCTTTTATTG/GTCTCTTTTATT...TATAG|GAA 1 1 59.454
162621000 GT-AG 1 95.9244315981346 1012 rna-XM_029283405.1 29163117 9 21279 22290 Protobothrops mucrosquamatus 103944 GAT|GTATCTTTTA...TAGACCTTAACA/ATGTATTTGAAA...TCCAG|AAT 0 1 65.789
162621001 GT-AG 0 1.000000099473604e-05 857 rna-XM_029283405.1 29163117 10 20353 21209 Protobothrops mucrosquamatus 103944 CTG|GTAAAAAGCA...GTCTCCCTCTCT/AAAGAGCTAACA...TCTAG|GAA 0 1 72.515
162621002 GT-AG 0 1.5608763952960666e-05 3168 rna-XM_029283405.1 29163117 11 17106 20273 Protobothrops mucrosquamatus 103944 CAG|GTCAGCTTCC...CATGTTTTAATT/CATGTTTTAATT...CACAG|GTT 1 1 80.214
162621003 AT-AC 0 8.83219151844124e-05 1978 rna-XM_029283405.1 29163117 12 15005 16982 Protobothrops mucrosquamatus 103944 AGT|ATTCTTGAAA...TTTTACTTATCA/ATTTTACTTATC...GCTAC|TAT 1 1 92.203
162621004 GT-AG 0 0.0002230851781029 1444 rna-XM_029283405.1 29163117 13 13505 14948 Protobothrops mucrosquamatus 103944 GAG|GTAAATTTGC...TAATCCTTATAT/ATTATCCTAATC...CTTAG|TGG 0 1 97.661

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