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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
126927329 GT-AG 0 1.000000099473604e-05 165 rna-XM_006779862.2 23335508 1 9617470 9617634 Neolamprologus brichardi 32507 ATG|GTGAGTTAAC...GTGTTTTTAATA/GTGTTTTTAATA...TAAAG|TTT 0 1 0.06
126927330 GT-AG 0 1.000000099473604e-05 1153 rna-XM_006779862.2 23335508 2 9617805 9618957 Neolamprologus brichardi 32507 CAG|GTACAGAATC...AGTACCATGACT/CCATGACTGACC...GTAAG|GAG 2 1 3.48
126927331 GT-AG 0 1.000000099473604e-05 1211 rna-XM_006779862.2 23335508 3 9619080 9620290 Neolamprologus brichardi 32507 GAG|GTAAGTATTG...TTTGCTTTGTTT/TATCTATTTACA...TTTAG|GAT 1 1 5.934
126927332 GT-AG 0 0.0012737170343877 134 rna-XM_006779862.2 23335508 4 9620409 9620542 Neolamprologus brichardi 32507 CAA|GTATGTATAT...TGCTGCTTGATG/TATTGATTAATT...TCCAG|GTG 2 1 8.308
126927333 GT-AG 0 1.000000099473604e-05 1500 rna-XM_006779862.2 23335508 5 9621798 9623297 Neolamprologus brichardi 32507 GAG|GTGAGGGAAC...GTGCTTGTATTA/TATGTATTTACA...CCAAG|GTT 0 1 33.555
126927334 GT-AG 0 1.000000099473604e-05 356 rna-XM_006779862.2 23335508 6 9625342 9625697 Neolamprologus brichardi 32507 AAG|GTAAAGAAAG...TTAATTTTATTT/TTTAATTTTATT...TCCAG|CTC 1 1 74.673
126927335 GT-AG 0 0.0004128546001617 112 rna-XM_006779862.2 23335508 7 9625846 9625957 Neolamprologus brichardi 32507 AAA|GTAAGTTCTC...TATTTCTTATTT/TTATTTCTTATT...TCAAG|AGC 2 1 77.65
126927336 GT-AG 0 0.0210061181247199 109 rna-XM_006779862.2 23335508 8 9626086 9626194 Neolamprologus brichardi 32507 ATA|GTATGTACTG...TCTCTCTTATTA/TTCTCTCTTATT...TGCAG|TCT 1 1 80.225
126927337 GT-AG 0 1.000000099473604e-05 91 rna-XM_006779862.2 23335508 9 9626231 9626321 Neolamprologus brichardi 32507 GGG|GTAAGATGAC...CTTTTCTTTTCT/TCTTTTCTGACT...TACAG|TTG 1 1 80.95
126927338 GT-AG 0 5.843845105596551e-05 205 rna-XM_006779862.2 23335508 10 9626597 9626801 Neolamprologus brichardi 32507 CAG|GTATATAAGA...TGATGTTTATTG/CTGATGTTTATT...TACAG|GAA 0 1 86.482
126927339 GT-AG 0 1.000000099473604e-05 109 rna-XM_006779862.2 23335508 11 9626891 9626999 Neolamprologus brichardi 32507 TGA|GTTAGTACAC...TACACCCTGACA/TACACCCTGACA...AACAG|GGT 2 1 88.272
126927340 GT-AG 0 1.000000099473604e-05 1030 rna-XM_006779862.2 23335508 12 9627218 9628247 Neolamprologus brichardi 32507 AAG|GTATGGTCAC...ACTATGTTACAC/TGGGGTGTCATT...TGCAG|GTG 1 1 92.657
126927341 GT-AG 0 1.000000099473604e-05 128 rna-XM_006779862.2 23335508 13 9628297 9628424 Neolamprologus brichardi 32507 AGG|GTCAGTATTA...TTACATTTAGCT/CTGTTTTGCATT...TACAG|GCA 2 1 93.643

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