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

✎ 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
163114400 GT-AG 0 1.000000099473604e-05 352 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 1 9846697 9847048 Prunella himalayana 670356 TGG|GTAAGGAGGA...CTTTCCTTCTTT/CCGTGTATCACA...TTTAG|GGG 1 1 12.225
163114401 GT-AG 0 1.000000099473604e-05 840 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 2 9847122 9847961 Prunella himalayana 670356 AGA|GTAAGAATTA...AAAGTGTTAATA/AAAGTGTTAATA...TGCAG|AGA 2 1 18.646
163114402 GT-AG 0 1.000000099473604e-05 175 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 3 9848017 9848191 Prunella himalayana 670356 GTG|GTAAGAACAC...TTTGTTTTATCC/TTTTGTTTTATC...TCTAG|ACT 0 1 23.483
163114403 GT-AG 0 1.000000099473604e-05 56457 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 4 9848312 9904768 Prunella himalayana 670356 CAG|GTAAGAATAG...TGTTCTCTGATT/TGTTCTCTGATT...TTCAG|GAG 0 1 34.037
163114404 GT-AG 0 2.63153449225362e-05 40693 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 5 9904867 9945559 Prunella himalayana 670356 GTA|GTAAGTATTT...GCATGTTTATTT/TGCATGTTTATT...TCTAG|CTT 2 1 42.656
163114405 GT-AG 0 1.000000099473604e-05 2411 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 6 9945615 9948025 Prunella himalayana 670356 CAG|GTTAGTAAAA...AAAGCCTTACTA/TGTGTTCTCATT...TCCAG|GAC 0 1 47.493
163114406 GT-AG 0 2.902549229673572e-05 844 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 7 9948100 9948943 Prunella himalayana 670356 CCA|GTAAGTCTGT...TTTTTCCTAGAG/AGTGATATAACA...AACAG|CAT 2 1 54.002
163114407 GT-AG 0 1.000000099473604e-05 235 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 8 9949003 9949237 Prunella himalayana 670356 ATG|GTAAGTAAAA...CTTTCCTTCTTT/TCTTTTCTCTCT...CCCAG|ATG 1 1 59.191
163114408 GT-AG 0 1.000000099473604e-05 1239 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 9 9949359 9950597 Prunella himalayana 670356 TAG|GTAAAACAAA...TTTTTGTTGATT/TTTTTGTTGATT...GACAG|GTG 2 1 69.833
163114409 GT-AG 0 1.000000099473604e-05 2006 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 10 9950729 9952734 Prunella himalayana 670356 ATG|GTAAGGCTTT...TTGTTTTTAATT/TTGTTTTTAATT...AACAG|CAA 1 1 81.354
163114410 GT-AG 0 1.000000099473604e-05 4012 rna-gnl|WGS:VYZK|PRUHIM_R11688_mrna 29262630 11 9952803 9956814 Prunella himalayana 670356 TTA|GTGAGTAATT...TTTTTTTTGCCT/TGGCACCTGATC...CACAG|AGG 0 1 87.335

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