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

✎ 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
162621737 GT-AG 0 0.0001047968672506 981 rna-XM_029284870.1 29163203 1 107803 108783 Protobothrops mucrosquamatus 103944 CGA|GTGCCGCCTC...TGAGGCTTAATT/TGAGGCTTAATT...TTCAG|GAC 1 1 8.238
162621738 GT-AG 0 1.000000099473604e-05 1311 rna-XM_029284870.1 29163203 2 106358 107668 Protobothrops mucrosquamatus 103944 CAG|GTGGGATCAT...TTTTTTTTAATG/ATTTTGCTTATT...GCCAG|GTA 0 1 15.548
162621739 GT-AG 0 1.000000099473604e-05 389 rna-XM_029284870.1 29163203 3 105900 106288 Protobothrops mucrosquamatus 103944 GAG|GTGTGTGCAT...TCTGACTTAGCT/ATCTTTCTGACT...TGCAG|GCA 0 1 19.313
162621740 GT-AG 0 1.000000099473604e-05 4107 rna-XM_029284870.1 29163203 4 101726 105832 Protobothrops mucrosquamatus 103944 CCT|GTGAGTTCTG...CCCTGCTTATTT/CATTCATTCATT...GCTAG|ATG 1 1 22.968
162621741 GT-AG 0 1.000000099473604e-05 351 rna-XM_029284870.1 29163203 5 101187 101537 Protobothrops mucrosquamatus 103944 AAG|GTGAAGGGAC...TTTTCTTTATTT/ATTTTCTTTATT...TTCAG|GCT 0 1 33.224
162621742 GT-AG 0 1.000000099473604e-05 972 rna-XM_029284870.1 29163203 6 100161 101132 Protobothrops mucrosquamatus 103944 GCA|GTAAGTAAGA...ATTGTCCTAATA/ATTGTCCTAATA...TCTAG|GCG 0 1 36.17
162621743 GT-AG 0 1.000000099473604e-05 2047 rna-XM_029284870.1 29163203 7 98066 100112 Protobothrops mucrosquamatus 103944 AAG|GTAAGAGATC...AGGGTTTTATAT/CAATGATTTATC...TTTAG|TTT 0 1 38.789
162621744 GT-AG 0 1.000000099473604e-05 4346 rna-XM_029284870.1 29163203 8 93674 98019 Protobothrops mucrosquamatus 103944 CAG|GTGAGTCTAC...AGGGCATTGACT/AGGGCATTGACT...TCTAG|ATA 1 1 41.298
162621745 GT-AG 0 1.000000099473604e-05 178 rna-XM_029284870.1 29163203 9 93344 93521 Protobothrops mucrosquamatus 103944 CAT|GTAAGTGACT...ATGGATTTAATT/ATGGATTTAATT...TGCAG|ACG 0 1 49.591
162621746 GT-AG 0 1.000000099473604e-05 2435 rna-XM_029284870.1 29163203 10 90840 93274 Protobothrops mucrosquamatus 103944 CTG|GTAAGGACCA...TTTTTTTTGTTT/TTTTGTTTCATT...GTCAG|GTG 0 1 53.355
162621747 GT-AG 0 1.000000099473604e-05 1970 rna-XM_029284870.1 29163203 11 88818 90787 Protobothrops mucrosquamatus 103944 ATG|GTAAGTTACA...CTTTCCTTCAAA/CTTTCCTTCAAA...GCTAG|TTT 1 1 56.192
162621748 GT-AG 0 1.000000099473604e-05 1372 rna-XM_029284870.1 29163203 12 87338 88709 Protobothrops mucrosquamatus 103944 GAG|GTAAAAAGCA...ATCCCTTTCATT/ATCCCTTTCATT...TCCAG|ATG 1 1 62.084

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