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

✎ 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
163707862 GT-AG 0 1.000000099473604e-05 245 rna-XM_007226225.2 29402392 1 10520118 10520362 Prunus persica 3760 CGA|GTGAGTTGAT...TCGTTCTTATCT/CTCGTTCTTATC...TGCAG|AGA 2 1 24.215
163707863 GT-AG 0 1.7786358008048685e-05 114 rna-XM_007226225.2 29402392 2 10519922 10520035 Prunus persica 3760 GCT|GTAATTGCCT...TGTATCTAAATA/TACGTATTCACT...TTTAG|GTG 0 1 26.152
163707864 GT-AG 0 1.000000099473604e-05 385 rna-XM_007226225.2 29402392 3 10519345 10519729 Prunus persica 3760 GAG|GTCAGTACAG...ACAACATTAGTT/AGTTGATTGATT...TATAG|ATT 0 1 30.687
163707865 GT-AG 0 1.000000099473604e-05 76 rna-XM_007226225.2 29402392 4 10519204 10519279 Prunus persica 3760 AAG|GTAATTGAAG...TAAGGTTTAATT/TAAGGTTTAATT...TGCAG|ACT 2 1 32.223
163707866 GT-AG 0 0.0004298340650778 367 rna-XM_007226225.2 29402392 5 10518677 10519043 Prunus persica 3760 CAG|GTAGTCATTG...GTATTTTTATTT/AGTATTTTTATT...TGCAG|GAT 0 1 36.003
163707867 GT-AG 0 1.605938127256848e-05 78 rna-XM_007226225.2 29402392 6 10518353 10518430 Prunus persica 3760 CAG|GTTTTGTATT...TCTCTTTTAGTT/TTCTCTTTTAGT...TTTAG|GCA 0 1 41.814
163707868 GT-AG 0 1.000000099473604e-05 177 rna-XM_007226225.2 29402392 7 10518059 10518235 Prunus persica 3760 GAG|GTAAATGCAG...TTAGTCTAAATT/GTTAGTCTAAAT...GGCAG|GAT 0 1 44.578
163707869 GT-AG 0 0.0866784769461404 182 rna-XM_007226225.2 29402392 8 10517685 10517866 Prunus persica 3760 GAG|GTATCTGATT...TTTGTCTTACAA/TTTTGTCTTACA...GGCAG|GCA 0 1 49.114
163707870 GT-AG 0 0.0006908982445394 524 rna-XM_007226225.2 29402392 9 10517079 10517602 Prunus persica 3760 AAG|GTTTGCAGAA...TCCTCCTTAACA/AATTTCTTTATG...ATCAG|GCA 1 1 51.051
163707871 GT-AG 0 0.0026623637867654 100 rna-XM_007226225.2 29402392 10 10516053 10516152 Prunus persica 3760 GAG|GTAACCAGCA...CATTTATTGATT/CATTTATTGATT...TTCAG|ATT 0 1 72.927
163707872 GT-AG 0 0.0051521847713702 79 rna-XM_007226225.2 29402392 11 10515472 10515550 Prunus persica 3760 ACG|GTATGTGTGC...TTTGCTTTGAAT/TTTGCTTTGAAT...TGCAG|ATA 1 1 84.786
163707873 GT-AG 0 2.952334803398169e-05 119 rna-XM_007226225.2 29402392 12 10515162 10515280 Prunus persica 3760 GGG|GTATGATAAT...TTCATCATACTT/TTCCATTTCATC...TGCAG|AAA 0 1 89.298

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