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

✎ 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
162621582 GT-AG 0 1.000000099473604e-05 633 rna-XM_015819464.1 29163187 1 2005422 2006054 Protobothrops mucrosquamatus 103944 CAG|GTTAAAGGTT...ACAGTTTTGATT/ATTTTTCTCAAA...TTTAG|AGT 0 1 3.197
162621583 GT-AG 0 1.000000099473604e-05 973 rna-XM_015819464.1 29163187 2 2006161 2007133 Protobothrops mucrosquamatus 103944 ATG|GTAAGATAGA...ATGTTCTTGTCA/GTTCTTGTCATT...TGCAG|AAG 1 1 6.022
162621584 GT-AG 0 3.048886790015415e-05 16239 rna-XM_015819464.1 29163187 3 2007658 2023896 Protobothrops mucrosquamatus 103944 GAG|GTAAACTATG...ACAGTGTTAAAC/ACAGTGTTAAAC...CCTAG|GAG 0 1 19.984
162621585 GT-AG 0 5.4987378588427095e-05 951 rna-XM_015819464.1 29163187 4 2023975 2024925 Protobothrops mucrosquamatus 103944 AAG|GTAAATTGTT...TCTCCTTTATTT/CAAAATTTCATC...TACAG|CTT 0 1 22.062
162621586 GT-AG 0 1.000000099473604e-05 1309 rna-XM_015819464.1 29163187 5 2025086 2026394 Protobothrops mucrosquamatus 103944 TGG|GTTAGTAATT...ATTTCTGTAATT/TTGATTTTGAGT...TGCAG|ACA 1 1 26.326
162621587 GT-AG 0 1.034221608733604e-05 583 rna-XM_015819464.1 29163187 6 2026517 2027099 Protobothrops mucrosquamatus 103944 CAA|GTAAGTATAA...GTTATTTTACTT/GGTTATTTTACT...TGCAG|AAT 0 1 29.576
162621588 GT-AG 0 1.000000099473604e-05 718 rna-XM_015819464.1 29163187 7 2027166 2027883 Protobothrops mucrosquamatus 103944 GAG|GTAAGTTGAC...ATTCCTTTACCT/TCATTTTTCATA...TCTAG|GAG 0 1 31.335
162621589 GT-AG 0 1.000000099473604e-05 1250 rna-XM_015819464.1 29163187 8 2028028 2029277 Protobothrops mucrosquamatus 103944 AAG|GTGAAATCCC...TTGTCCATGACC/TATGTCATTATT...GATAG|GTC 0 1 35.172
162621590 GT-AG 0 0.0083854301971672 358 rna-XM_015819464.1 29163187 9 2029389 2029746 Protobothrops mucrosquamatus 103944 AAG|GTAACTATTG...TTATTTTTAATT/TTATTTTTAATT...TCCAG|CAT 0 1 38.129
162621591 GT-AG 0 1.622249592482992e-05 1402 rna-XM_015819464.1 29163187 10 2029846 2031247 Protobothrops mucrosquamatus 103944 AAG|GTATTACCGT...TATTTTGTATTT/AATGTTATAACA...TACAG|TAT 0 1 40.767
162621592 GT-AG 0 4.2969470648999504e-05 1829 rna-XM_015819464.1 29163187 11 2031369 2033197 Protobothrops mucrosquamatus 103944 CAG|GTAAGCCCCA...TTTTTTTTAACA/TTTTTTTTAACA...GACAG|AAT 1 1 43.991
162621593 GT-AG 0 1.549068089509862e-05 1259 rna-XM_015819464.1 29163187 12 2033344 2034602 Protobothrops mucrosquamatus 103944 AAT|GTAAGTATAA...TGTTTTTTGAAC/TGTTTTTTGAAC...TATAG|GCT 0 1 47.882

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