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

✎ 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
163479667 GT-AG 0 1.000000099473604e-05 245 rna-XM_034342713.1 29350720 1 10634321 10634565 Prunus dulcis 3755 CGA|GTGAGTTGAT...TCGTTCTTATCT/CTCGTTCTTATC...TGCAG|AGA 2 1 24.232
163479668 GT-AG 0 1.804409113530953e-05 114 rna-XM_034342713.1 29350720 2 10634125 10634238 Prunus dulcis 3755 GCT|GTAATTGCCT...TGTATCTAAATA/TACGTATTCACT...TCTAG|GTG 0 1 26.17
163479669 GT-AG 0 1.000000099473604e-05 385 rna-XM_034342713.1 29350720 3 10633548 10633932 Prunus dulcis 3755 GAG|GTCAGTCCAG...ACAACATTAGTT/AGTTGATTGATT...TATAG|ATT 0 1 30.709
163479670 GT-AG 0 1.000000099473604e-05 76 rna-XM_034342713.1 29350720 4 10633407 10633482 Prunus dulcis 3755 AAG|GTAATTGAAG...TAAGGTTTAATT/TAAGGTTTAATT...TGCAG|ACT 2 1 32.246
163479671 GT-AG 0 0.0004298340650778 376 rna-XM_034342713.1 29350720 5 10632871 10633246 Prunus dulcis 3755 CAG|GTAGTCATTG...GTATTTTTATTT/AGTATTTTTATT...TGCAG|GAT 0 1 36.028
163479672 GT-AG 0 1.605938127256848e-05 78 rna-XM_034342713.1 29350720 6 10632547 10632624 Prunus dulcis 3755 CAG|GTTTTGTATT...TCTCTTTTAGTT/TTCTCTTTTAGT...TTTAG|GCA 0 1 41.844
163479673 GT-AG 0 1.000000099473604e-05 172 rna-XM_034342713.1 29350720 7 10632258 10632429 Prunus dulcis 3755 GAG|GTAAATGCAG...AATGCTTTACAT/CATTGGTTAATC...GGCAG|GAT 0 1 44.61
163479674 GT-AG 0 0.0866784769461404 193 rna-XM_034342713.1 29350720 8 10631873 10632065 Prunus dulcis 3755 GAG|GTATCTGATT...TTTGTCTTACAA/TTTTGTCTTACA...GGCAG|GCA 0 1 49.149
163479675 GT-AG 0 0.0006908982445394 535 rna-XM_034342713.1 29350720 9 10631256 10631790 Prunus dulcis 3755 AAG|GTTTGCAGAA...TCCTCCTTAACA/AATTTCTTTATG...ATCAG|GCA 1 1 51.087
163479676 GT-AG 0 0.0026623637867654 100 rna-XM_034342713.1 29350720 10 10630230 10630329 Prunus dulcis 3755 GAG|GTAACCAGCA...CATTTATTGATT/CATTTATTGATT...TTCAG|ATT 0 1 72.979
163479677 GT-AG 0 0.0040153630855504 79 rna-XM_034342713.1 29350720 11 10629649 10629727 Prunus dulcis 3755 ACG|GTATGTGTGC...TTTGCTTTGAAT/TTTGCTTTGAAT...TGCAG|ATG 1 1 84.846
163479678 GT-AG 0 2.952334803398169e-05 119 rna-XM_034342713.1 29350720 12 10629339 10629457 Prunus dulcis 3755 GGG|GTATGATAAT...TTCATCATACTT/TTCCATTTCATC...TGCAG|AAA 0 1 89.362

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