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

✎ 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
3636553 GT-AG 0 1.000000099473604e-05 1161 rna-BJG266_LOCUS3 670673 1 6454 7614 Adineta steineri 433720 CAG|GTAAAATACT...GACATTTTGAGT/GACATTTTGAGT...TTTAG|AAG 1 1 0.765
3636554 GT-AG 0 0.0003532678328289 387 rna-BJG266_LOCUS3 670673 2 8082 8468 Adineta steineri 433720 TTT|GTAAGTTTAT...ATTTTCTTTATG/TATGCTTTCATT...ATCAG|GAT 0 1 13.525
3636555 GT-AG 0 1.000000099473604e-05 51 rna-BJG266_LOCUS3 670673 3 8898 8948 Adineta steineri 433720 AAA|GTAAATAGAT...ATTTTTTTTTCA/ATAATAATCATT...TTTAG|CTA 0 1 25.246
3636556 GT-AG 0 1.000000099473604e-05 147 rna-BJG266_LOCUS3 670673 4 9454 9600 Adineta steineri 433720 CAG|GTGAATATAT...TATCTTTTATTT/ATTTTGTTTATT...TCTAG|TGC 1 1 39.044
3636557 GT-AG 0 6.388143329513848e-05 412 rna-BJG266_LOCUS3 670673 5 10257 10668 Adineta steineri 433720 GGA|GTAAGTTTGT...TGTCCGATGACC/AAGTGGATGATT...TTTAG|AAT 0 1 56.967
3636558 GT-AG 0 1.000000099473604e-05 1233 rna-BJG266_LOCUS3 670673 6 10819 12051 Adineta steineri 433720 GAG|GTAAGATAAT...TAATCTTTTGCA/ATCTTTTGCATA...TTTAG|CTT 0 1 61.066
3636559 GT-AG 0 0.0182757204187591 66 rna-BJG266_LOCUS3 670673 7 12202 12267 Adineta steineri 433720 TCT|GTAAACTAAG...ATATTTTTAATC/TTTTATTTTATT...CTTAG|ATT 0 1 65.164
3636560 GT-AG 0 1.000000099473604e-05 60 rna-BJG266_LOCUS3 670673 8 12372 12431 Adineta steineri 433720 CAA|GTGAGTAGTG...TCTCTTTTAATC/TTTCTTTTTATA...TCTAG|AAA 2 1 68.005
3636561 GT-AG 0 1.000000099473604e-05 55 rna-BJG266_LOCUS3 670673 9 12589 12643 Adineta steineri 433720 CAG|GTAATAAAAA...CTCTTTTTAATT/ATTTTTCTAACA...TATAG|AAT 0 1 72.295
3636562 GT-AG 0 0.0002424065580639 51 rna-BJG266_LOCUS3 670673 10 12864 12914 Adineta steineri 433720 AAG|GTATTAATCA...TCTGTTTTATTT/ATCTGTTTTATT...TTTAG|ATG 1 1 78.306
3636563 GT-AG 0 0.0003366392281811 51 rna-BJG266_LOCUS3 670673 11 13009 13059 Adineta steineri 433720 AAA|GTAAATTTTA...TATTTCATATTG/ATGTATTTCATA...TATAG|ATT 2 1 80.874
3636564 GT-AG 0 1.000000099473604e-05 190 rna-BJG266_LOCUS3 670673 12 13157 13346 Adineta steineri 433720 CAA|GTAAGTAAAT...GATTCTTTAAAA/TTAAATTTTATT...TTTAG|TTA 0 1 83.525
3636565 GT-AG 0 0.0001326319421362 53 rna-BJG266_LOCUS3 670673 13 13494 13546 Adineta steineri 433720 CAG|GTATATCAAT...GTTTCATTAAAA/TTTTGTTTCATT...AATAG|GAA 0 1 87.541

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