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

✎ 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
147887640 GT-AG 0 1.000000099473604e-05 28165 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 1 46381 74545 Pedionomus torquatus 227192 AAG|GTAATTGATG...CATTTCTGGAGT/GCCATGGTCATT...GTTAG|GAC 0 1 8.54
147887641 GT-AG 0 1.000000099473604e-05 475 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 2 45774 46248 Pedionomus torquatus 227192 CAG|GTAGGTGATC...TTTCCCTTGCAT/TAAATTGTAACA...CTCAG|GTA 0 1 15.373
147887642 GT-AG 0 1.330920371188437e-05 380 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 3 45185 45564 Pedionomus torquatus 227192 AAA|GTATGAGCTA...GCACTTCTAACA/GCACTTCTAACA...TCCAG|GCT 2 1 26.19
147887643 GT-AG 0 0.0044948291615205 3638 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 4 41354 44991 Pedionomus torquatus 227192 GCG|GTATGTATAG...AGTTCTTTATTG/GAGTTCTTTATT...TAAAG|GCT 0 1 36.18
147887644 GT-AG 0 1.000000099473604e-05 1688 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 5 39472 41159 Pedionomus torquatus 227192 CAG|GTAAGTGCTG...TTTTCCTTTTTT/AATGCATTAATC...TTTAG|TTC 2 1 46.222
147887645 GT-AG 0 1.000000099473604e-05 1218 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 6 38176 39393 Pedionomus torquatus 227192 CTG|GTGAGTGGGA...GATTTTTTAAAA/GATTTTTTAAAA...AACAG|GAT 2 1 50.259
147887646 GT-AG 0 1.000000099473604e-05 3219 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 7 34761 37979 Pedionomus torquatus 227192 CAG|GTGGGAATCA...GCATTTCTAACA/TTCTCTCTCACT...ACTAG|TAC 0 1 60.404
147887647 GT-AG 0 1.000000099473604e-05 2120 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 8 32518 34637 Pedionomus torquatus 227192 AAG|GTAGGCAGCC...CTTGCATTAATC/CTTGCATTAATC...TGTAG|GTA 0 1 66.77
147887648 GT-AG 0 1.0356851838534456e-05 620 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 9 31695 32314 Pedionomus torquatus 227192 CAG|GTAGGTTGCA...GTTTGCTTGATA/GTTTGCTTGATA...TTCAG|GGA 2 1 77.277
147887649 GT-AG 0 1.000000099473604e-05 8234 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 10 23339 31572 Pedionomus torquatus 227192 GCG|GTAAGTGCAA...CAGGTCTGAGCT/GCAGGTCTGAGC...TTCAG|GAG 1 1 83.592
147887650 GT-AG 0 1.000000099473604e-05 1503 rna-gnl|WGS:VZRU|PEDTOR_R10436_mrna 26670814 11 21699 23201 Pedionomus torquatus 227192 CAG|GTGAGATAAG...GCTGCTTCAGCT/CGCTGCTTCAGC...TCTAG|GTC 0 1 90.683

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