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

✎ 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
67904750 GT-AG 0 2.0182810244229865e-05 597 rna-XM_022894283.1 12758583 1 8553380 8553976 Durio zibethinus 66656 AGA|GTAAGTACCT...TTTTCATTATCT/ATTTTCATTATC...TGCAG|GTG 0 1 2.477
67904751 GT-AG 0 1.000000099473604e-05 76 rna-XM_022894283.1 12758583 2 8554173 8554248 Durio zibethinus 66656 AAG|GTGAGCATTG...ATAGTTTTAGCT/TTTTAGCTAACA...TCCAG|GTT 1 1 8.471
67904752 GT-AG 0 1.000000099473604e-05 88 rna-XM_022894283.1 12758583 3 8554485 8554572 Durio zibethinus 66656 GAG|GTGAATTCGT...AATATGTTATTG/ACATATCTAATT...TGAAG|GAT 0 1 15.688
67904753 GT-AG 0 0.0002331011522356 193 rna-XM_022894283.1 12758583 4 8554676 8554868 Durio zibethinus 66656 CCT|GTAAGTTATT...TGGCACTTAATA/CTGTTGTTGATA...CCCAG|TGC 1 1 18.838
67904754 GT-AG 0 1.000000099473604e-05 559 rna-XM_022894283.1 12758583 5 8555038 8555596 Durio zibethinus 66656 AAT|GTTGGTGAAT...ACAGTTTCAACT/TTTGCATTCACA...TATAG|GAT 2 1 24.006
67904755 GT-AG 0 1.000000099473604e-05 167 rna-XM_022894283.1 12758583 6 8555864 8556030 Durio zibethinus 66656 GAG|GTGATTCCAT...TTATTTTTATTT/ATTATTTTTATT...TTAAG|GTA 2 1 32.171
67904756 GT-AG 0 1.000000099473604e-05 296 rna-XM_022894283.1 12758583 7 8556377 8556672 Durio zibethinus 66656 AAG|GTTTGTAACT...GATGTTTTATAT/GGGTTGTTAATT...TACAG|AGG 0 1 42.752
67904757 GT-AG 0 1.000000099473604e-05 110 rna-XM_022894283.1 12758583 8 8556811 8556920 Durio zibethinus 66656 CAG|GTGAAGTGTT...TGGGTATTATTT/TTGGGTATTATT...TATAG|GTT 0 1 46.972
67904758 GT-AG 0 0.0004066987141382 128 rna-XM_022894283.1 12758583 9 8557047 8557174 Durio zibethinus 66656 TTG|GTATAGCTTT...TTGTTTATAATT/ATTTATCTAATT...TGAAG|GTT 0 1 50.826
67904759 GT-AG 0 8.692761715083502e-05 90 rna-XM_022894283.1 12758583 10 8557388 8557477 Durio zibethinus 66656 GAT|GTAAGTATAG...GTCTTTTTATTT/TGTCTTTTTATT...AACAG|ATC 0 1 57.339
67904760 GT-AG 0 1.000000099473604e-05 293 rna-XM_022894283.1 12758583 11 8557743 8558035 Durio zibethinus 66656 AAG|GTAAGATGTT...AGAGCCATAATT/CATAATTTCATA...TGCAG|GTA 1 1 65.443
67904761 GT-AG 0 0.0020315455237247 110 rna-XM_022894283.1 12758583 12 8558233 8558342 Durio zibethinus 66656 GAA|GTATGTAGAA...TTTTTTTTGAAT/TTTTTTTTGAAT...TTCAG|GTT 0 1 71.468
67904762 GT-AG 0 1.000000099473604e-05 624 rna-XM_022894283.1 12758583 13 8558694 8559317 Durio zibethinus 66656 GAG|GTAATTCTGA...TTCATCTAAATT/CTAAAACTGATT...TGCAG|ATT 0 1 82.202

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