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

✎ 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
163593657 GT-AG 0 1.7108677715056684e-05 2497 rna-XM_008220274.1 29376529 1 26716626 26719122 Prunus mume 102107 TAG|GTAAATTCTG...TTCAATTTATCT/TATCCACTCATC...TACAG|ATT 1 1 3.594
163593658 GT-AG 0 1.000000099473604e-05 94 rna-XM_008220274.1 29376529 2 26719385 26719478 Prunus mume 102107 GGG|GTTAGTATCT...TTGTTTATAAAT/TATTTGTTTATA...TGCAG|TAA 2 1 11.188
163593659 GT-AG 0 1.000000099473604e-05 129 rna-XM_008220274.1 29376529 3 26719577 26719705 Prunus mume 102107 ACG|GTTAGTATTC...GAAACTTAAATT/CAATATTTCATG...TTCAG|AGC 1 1 14.029
163593660 GT-AG 0 0.0002238396575564 807 rna-XM_008220274.1 29376529 4 26719756 26720562 Prunus mume 102107 GAG|GTAATTTTTA...TTGTTTTTGAAT/TTGTTTTTGAAT...AACAG|GAC 0 1 15.478
163593661 GT-AG 0 0.116329188766278 700 rna-XM_008220274.1 29376529 5 26720613 26721312 Prunus mume 102107 AGG|GTAACCTCTC...ATTTTCTAATCT/AATTTTCTAATC...CTCAG|TGG 2 1 16.928
163593662 GT-AG 0 0.0006504080955294 190 rna-XM_008220274.1 29376529 6 26721425 26721614 Prunus mume 102107 GAG|GTTTATTAAT...CTTGCCTTAGTG/AATATTTTTATC...AACAG|AAT 0 1 20.174
163593663 GT-AG 0 0.0371587935093712 183 rna-XM_008220274.1 29376529 7 26722780 26722962 Prunus mume 102107 TAG|GTATCTAAAT...TAATTCTTGTTG/AATATTCTTACG...TTCAG|TTG 1 1 53.942
163593664 GT-AG 0 0.0029808992406568 549 rna-XM_008220274.1 29376529 8 26723108 26723656 Prunus mume 102107 CGA|GTATGTGACA...TCTCTTTTGACA/TTGACACTAACT...TGAAG|TAC 2 1 58.145
163593665 GT-AG 0 1.632984794263418e-05 175 rna-XM_008220274.1 29376529 9 26723794 26723968 Prunus mume 102107 CTG|GTAAGTTGGT...TTAGTTTTGATG/TTAGTTTTGATG...ACCAG|GCA 1 1 62.116
163593666 GT-AG 0 1.1031678233305008e-05 290 rna-XM_008220274.1 29376529 10 26724907 26725196 Prunus mume 102107 GGT|GTGAGTTGCG...GTGCTTTTAACT/TTTAACTTCACT...TGCAG|CAT 0 1 89.304
163593667 GT-AG 0 1.000000099473604e-05 378 rna-XM_008220274.1 29376529 11 26725231 26725608 Prunus mume 102107 CAG|GTTAAGTTTC...GTTCCTTTGAAT/CACATTTTCATT...TTCAG|AAT 1 1 90.29
163593668 GT-AG 0 1.000000099473604e-05 427 rna-XM_008220274.1 29376529 12 26725715 26726141 Prunus mume 102107 CAG|GTGCGTGTGC...TTTCTTTTATTA/TTTTCTTTTATT...TGTAG|AGC 2 1 93.362
163593669 GT-AG 0 1.000000099473604e-05 1261 rna-XM_008220274.1 29376529 13 26726272 26727532 Prunus mume 102107 TTG|GTAAGTCTTA...TACTCATTGTTT/GTTCTACTCATT...TGCAG|GTT 0 1 97.13

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