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)

11 rows where transcript_id = 23988696

✎ 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
130513157 GT-AG 0 1.000000099473604e-05 7522 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 1 3155501 3163022 Nothoprocta pentlandii 2585814 CAG|GTAAGTCTTG...ACTCTGTTAATG/AATCTGCTCACT...TTCAG|GCA 0 1 10.979
130513158 GT-AG 0 1.000000099473604e-05 815 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 2 3154588 3155402 Nothoprocta pentlandii 2585814 CGA|GTAAGTGATG...TAATTCTTCATA/ATTTGTCTCATC...TTCAG|AAA 2 1 18.775
130513159 GT-AG 0 1.000000099473604e-05 1030 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 3 3153476 3154505 Nothoprocta pentlandii 2585814 GAG|GTAGGAATGA...TTGTTTTTAAAC/TTTAATTTAATC...TTTAG|GAT 0 1 25.298
130513160 GT-AG 0 1.000000099473604e-05 1821 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 4 3151569 3153389 Nothoprocta pentlandii 2585814 AAG|GTAAGACAAG...TGTTTCCAATTT/TTGTTTCCAATT...GACAG|TGG 2 1 32.14
130513161 GT-AG 0 0.0011963317855534 452 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 5 3151041 3151492 Nothoprocta pentlandii 2585814 GAC|GTAAGCATTT...AAAATCTTATTT/AAAAATCTTATT...TACAG|CTT 0 1 38.186
130513162 GT-AG 0 1.000000099473604e-05 897 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 6 3150081 3150977 Nothoprocta pentlandii 2585814 AAG|GTAAAAAATG...AAGTCTCTGACT/ATTTTCCTCATG...TATAG|ATG 0 1 43.198
130513163 GT-AG 0 1.000000099473604e-05 697 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 7 3149317 3150013 Nothoprocta pentlandii 2585814 ATG|GTGAGCAATT...TTCCATTTATCT/TTTCCATTTATC...TGCAG|TTT 1 1 48.528
130513164 GT-AG 0 1.000000099473604e-05 605 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 8 3148593 3149197 Nothoprocta pentlandii 2585814 ATG|GTAAGTTACT...TGAATTTAAGTA/CTGAATTTAAGT...TGCAG|GAA 0 1 57.995
130513165 GT-AG 0 0.0176829114424863 741 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 9 3147762 3148502 Nothoprocta pentlandii 2585814 AGA|GTATGTATTT...ACATGCTTGATG/TGCTTTCTAACA...TACAG|AGC 0 1 65.155
130513166 GT-AG 0 1.000000099473604e-05 259 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 10 3147305 3147563 Nothoprocta pentlandii 2585814 GAG|GTAAGAAACA...GTTTTCTTATCT/AGTTTTCTTATC...TGCAG|GCT 0 1 80.907
130513167 GT-AG 0 1.000000099473604e-05 1054 rna-gnl|WGS:VZSG|NOTPEN_R09824_mrna 23988696 11 3146080 3147133 Nothoprocta pentlandii 2585814 GTG|GTAAGTTGGA...TTATTCATAATG/TTATTATTCATA...TTCAG|TAC 0 1 94.511

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