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)

12 rows where transcript_id = 10378437

✎ 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
57022755 GT-AG 0 1.000000099473604e-05 150 rna-XM_025127534.1 10378437 1 17052119 17052268 Cynara cardunculus 4265 ATG|GTTCGACTCT...TAATCTTTATGA/AAAAGACTAATC...TGCAG|GTA 0 1 5.137
57022756 GT-AG 0 4.8553554936536e-05 77 rna-XM_025127534.1 10378437 2 17052512 17052588 Cynara cardunculus 4265 GAG|GTTTATGTCA...AAAATTTTGAAA/ATTTGTCTCAAA...ATCAG|CTA 0 1 11.848
57022757 GT-AG 0 0.000484085690207 182 rna-XM_025127534.1 10378437 3 17053384 17053565 Cynara cardunculus 4265 ATG|GTATGTTTCA...ACACCATTGGTC/AAGATACTCACA...TCCAG|GTG 0 1 33.803
57022758 GT-AG 0 1.000000099473604e-05 650 rna-XM_025127534.1 10378437 4 17053814 17054463 Cynara cardunculus 4265 GAG|GTGAATATTC...TAGTTCTAGATT/ATGGTTTTCATG...AACAG|TCA 2 1 40.652
57022759 GT-AG 0 1.000000099473604e-05 288 rna-XM_025127534.1 10378437 5 17054624 17054911 Cynara cardunculus 4265 AAG|GTGACATCGC...TAAGCTATATTT/ATGATGCTCATC...TGCAG|GTT 0 1 45.07
57022760 GT-AG 0 0.000195743966317 116 rna-XM_025127534.1 10378437 6 17055039 17055154 Cynara cardunculus 4265 CTG|GTATTACCAT...TTGTCCTTTATG/TTGTCCTTTATG...ATCAG|ATG 1 1 48.578
57022761 GT-AG 0 1.000000099473604e-05 648 rna-XM_025127534.1 10378437 7 17055245 17055892 Cynara cardunculus 4265 CAT|GTAAGTGCAA...TTAACATTATCA/TATCAATTCACT...TACAG|CAG 1 1 51.063
57022762 GT-AG 0 0.0001085035726836 135 rna-XM_025127534.1 10378437 8 17056085 17056219 Cynara cardunculus 4265 GTG|GTATGGACCT...TATCTTTTATCT/GCTATTTTCATT...TATAG|GCA 1 1 56.366
57022763 GT-AG 0 0.0015175509855302 108 rna-XM_025127534.1 10378437 9 17056290 17056397 Cynara cardunculus 4265 ACT|GTAAGCAACA...CCTTTCTTGATT/ATTTTTTTAACC...CTCAG|GCA 2 1 58.299
57022764 GT-AG 0 1.000000099473604e-05 379 rna-XM_025127534.1 10378437 10 17056441 17056819 Cynara cardunculus 4265 CTG|GTGAGATAAA...CCCACCTTATTG/TATTATCTCATG...GACAG|GTT 0 1 59.486
57022765 GT-AG 0 1.000000099473604e-05 359 rna-XM_025127534.1 10378437 11 17056961 17057319 Cynara cardunculus 4265 AAG|GTGAGCAAAG...TTCACTATAACT/TATTGGTTCACT...TGCAG|GTA 0 1 63.38
57022766 GT-AG 0 1.000000099473604e-05 849 rna-XM_025127534.1 10378437 12 17058391 17059239 Cynara cardunculus 4265 CAG|GTAATTACAA...TAGCTTCTGACT/TAGCTTCTGACT...ACCAG|ATG 0 1 92.958

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