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

✎ 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
207135866 GT-AG 0 1.000000099473604e-05 1321 rna-XM_026407765.1 37556869 1 21484946 21486266 Urocitellus parryii 9999 GCG|GTAAGGAGGT...TTTATATTAACA/TTTATATTAACA...TATAG|GAA 0 1 1.015
207135867 GT-AG 0 1.000000099473604e-05 2987 rna-XM_026407765.1 37556869 2 21481860 21484846 Urocitellus parryii 9999 GAA|GTAAGTAACA...AAAACCTTCATA/AAAACCTTCATA...TGTAG|AGA 0 1 6.599
207135868 GT-AG 0 1.000000099473604e-05 2370 rna-XM_026407765.1 37556869 3 21479402 21481771 Urocitellus parryii 9999 ATG|GTAAGCTCAT...AATGTCTAACAT/AAATGTCTAACA...TTTAG|AAA 1 1 11.562
207135869 GT-AG 0 1.000000099473604e-05 408 rna-XM_026407765.1 37556869 4 21478896 21479303 Urocitellus parryii 9999 AAG|GTAAGTCTTC...GTTGTCATAACC/TTTGTTGTCATA...CTTAG|AAT 0 1 17.09
207135870 GT-AG 0 1.000000099473604e-05 4631 rna-XM_026407765.1 37556869 5 21474169 21478799 Urocitellus parryii 9999 AAG|GTAAGTCACA...ATATTTTTATTT/AATATTTTTATT...AACAG|ATT 0 1 22.504
207135871 GT-AG 0 1.000000099473604e-05 6515 rna-XM_026407765.1 37556869 6 21467500 21474014 Urocitellus parryii 9999 CAG|GTAAAAATCA...TCTTGCTTAATC/AGTTAACTTACA...CTAAG|AAT 1 1 31.19
207135872 GT-AG 0 7.792002887056273e-05 6270 rna-XM_026407765.1 37556869 7 21461073 21467342 Urocitellus parryii 9999 GAG|GTAAGCTGAA...TTTCTTTTAAAA/CGAGTTCTAACT...TATAG|ATT 2 1 40.045
207135873 GT-AG 0 1.000000099473604e-05 26541 rna-XM_026407765.1 37556869 8 21434432 21460972 Urocitellus parryii 9999 GAG|GTAAGTTATT...GCTTTTCTAACT/GCTTTTCTAACT...TTCAG|TCT 0 1 45.685
207135874 GT-AG 0 1.000000099473604e-05 2468 rna-XM_026407765.1 37556869 9 21431816 21434283 Urocitellus parryii 9999 CTG|GTAAGGTGTG...CACATCTTATTG/ATTTAATTCACA...AACAG|ATG 1 1 54.033
207135875 GT-AG 0 1.000000099473604e-05 571 rna-XM_026407765.1 37556869 10 21431067 21431637 Urocitellus parryii 9999 ATG|GTAAGTCTGT...GATTTCTAAGTA/AATTGATTTATT...TCCAG|GTC 2 1 64.072
207135876 GT-AG 0 2.155114838076762e-05 1422 rna-XM_026407765.1 37556869 11 21429598 21431019 Urocitellus parryii 9999 AAG|GTACTTAATT...ATGTTATTATTA/ATGGATTTCATT...TTCAG|ATA 1 1 66.723
207135877 GT-AG 0 1.000000099473604e-05 518 rna-XM_026407765.1 37556869 13 21405247 21405764 Urocitellus parryii 9999 GAG|GTGAGTTGAA...TTTTCCTTCATT/TTTTGTTTTATT...TCCAG|AAA 1 1 75.86
207135878 GT-AG 0 1.000000099473604e-05 5225 rna-XM_026407765.1 37556869 14 21399799 21405023 Urocitellus parryii 9999 AAG|GTACGTGATG...TTTTTCTTCCCC/TTATGAATTACC...TCTAG|CTA 2 1 88.438

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