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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163706476 GT-AG 0 4.255411405548054e-05 144 rna-XM_007221869.2 29402309 1 32432348 32432491 Prunus persica 3760 CGG|GTAAATTTTT...GGTTTCTGATTT/TTTTGTCTAATT...TTTAG|GGT 2 1 2.443
163706477 GT-AG 0 0.000318104026767 159 rna-XM_007221869.2 29402309 2 32433219 32433377 Prunus persica 3760 CAT|GTAATTTGCG...TCTGCTTTATAA/TTCTGCTTTATA...AACAG|AAT 0 1 7.518
163706478 GT-AG 0 0.0002304060019419 776 rna-XM_007221869.2 29402309 3 32439371 32440146 Prunus persica 3760 CAG|GTATAACTTG...CGCTTTTTGAAT/CGCTTTTTGAAT...CACAG|GCT 2 1 49.354
163706479 GT-AG 0 0.000736835207113 269 rna-XM_007221869.2 29402309 4 32441658 32441926 Prunus persica 3760 TGG|GTAACTGAAA...TTATTCTTGATT/TTATTCTTGATT...TGTAG|GTG 1 1 59.902
163706480 GT-AG 0 0.0016243042791551 1374 rna-XM_007221869.2 29402309 5 32442191 32443564 Prunus persica 3760 TAG|GTATTTATTC...AATTTTTTTATG/AATTTTTTTATG...TTCAG|GTA 1 1 61.745
163706481 GT-AG 0 0.0003610242526702 78 rna-XM_007221869.2 29402309 6 32443786 32443863 Prunus persica 3760 CAG|GTATTGTTAG...GTGGTCTTATGT/CATTTACTTACA...ATCAG|GTG 0 1 63.288
163706482 GT-AG 0 0.0013332680595003 674 rna-XM_007221869.2 29402309 7 32444136 32444809 Prunus persica 3760 TAG|GTATGTTATG...ATGTGCTTGATG/ATTCCACTTACT...TGCAG|GCG 2 1 65.187
163706483 GT-AG 0 0.0080015586805948 80 rna-XM_007221869.2 29402309 8 32447847 32447926 Prunus persica 3760 CAG|GTACCTCTAG...TCTTGCTTACAT/ATCTTGCTTACA...CCCAG|ATT 0 1 86.387
163706484 GT-AG 0 0.0004518641075541 594 rna-XM_007221869.2 29402309 9 32448060 32448653 Prunus persica 3760 CAG|GTAGACTCCA...AGGTTCTTCATC/AGGTTCTTCATC...TGCAG|ATA 1 1 87.316
163706485 GT-AG 0 0.0001499133491745 100 rna-XM_007221869.2 29402309 10 32449178 32449277 Prunus persica 3760 GAG|GTAGCATGAT...TTGTCTTTATGT/GTTGTCTTTATG...TGTAG|GAG 0 1 90.974
163706486 GT-AG 0 1.000000099473604e-05 619 rna-XM_007221869.2 29402309 11 32450190 32450808 Prunus persica 3760 CAG|GTTTGTACCC...GGTTTCTTCATT/GGTTTCTTCATT...TGCAG|CTG 0 1 97.34
163706487 GT-AG 0 0.0036465883565429 327 rna-XM_007221869.2 29402309 12 32450992 32451318 Prunus persica 3760 CAG|GTATGCTATT...TATTTATTGAAC/ATTGAACTAATT...TTCAG|GAA 0 1 98.618

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