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

✎ 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
163478332 GT-AG 0 4.255411405548054e-05 144 rna-XM_034345674.1 29350645 1 29015896 29016039 Prunus dulcis 3755 CGG|GTAAATTTTT...GGTTTCTGATTT/TTTTGTCTAATT...TTTAG|GGT 2 1 2.443
163478333 GT-AG 0 0.000318104026767 159 rna-XM_034345674.1 29350645 2 29016767 29016925 Prunus dulcis 3755 CAT|GTAATTTGCG...TCTGCTTTATAA/TTCTGCTTTATA...AACAG|AAT 0 1 7.518
163478334 GT-AG 0 0.0002304060019419 753 rna-XM_034345674.1 29350645 3 29022919 29023671 Prunus dulcis 3755 CAG|GTATAACTTG...CGCTTTTTGAAT/CGCTTTTTGAAT...CACAG|GCT 2 1 49.354
163478335 GT-AG 0 0.000736835207113 271 rna-XM_034345674.1 29350645 4 29025183 29025453 Prunus dulcis 3755 TGG|GTAACTGAAA...TTATTCTTGATT/TTATTCTTGATT...TGTAG|GTG 1 1 59.902
163478336 GT-AG 0 0.0016243042791551 803 rna-XM_034345674.1 29350645 5 29025718 29026520 Prunus dulcis 3755 TAG|GTATTTATTC...AATTTTTTTATG/AATTTTTTTATG...TTCAG|GTA 1 1 61.745
163478337 GT-AG 0 0.0003610242526702 78 rna-XM_034345674.1 29350645 6 29026742 29026819 Prunus dulcis 3755 CAG|GTATTGTTAG...GTGGTCTTATGT/CATTTACTTACA...ATCAG|GTG 0 1 63.288
163478338 GT-AG 0 0.0013332680595003 674 rna-XM_034345674.1 29350645 7 29027092 29027765 Prunus dulcis 3755 TAG|GTATGTTATG...ATGTGCTTGATG/ATTCCACTTACT...TGCAG|GCG 2 1 65.187
163478339 GT-AG 0 0.0080015586805948 80 rna-XM_034345674.1 29350645 8 29030803 29030882 Prunus dulcis 3755 CAG|GTACCTCTAG...TCTTGCTTACAT/ATCTTGCTTACA...CCCAG|ATT 0 1 86.387
163478340 GT-AG 0 0.0004518641075541 593 rna-XM_034345674.1 29350645 9 29031016 29031608 Prunus dulcis 3755 CAG|GTAGACTCCA...AGGTTCTTCATC/AGGTTCTTCATC...TGCAG|ATA 1 1 87.316
163478341 GT-AG 0 0.0001499133491745 100 rna-XM_034345674.1 29350645 10 29032133 29032232 Prunus dulcis 3755 GAG|GTAGCATGAT...TTGTCTTTATGT/GTTGTCTTTATG...TGTAG|GAG 0 1 90.974
163478342 GT-AG 0 1.000000099473604e-05 620 rna-XM_034345674.1 29350645 11 29033145 29033764 Prunus dulcis 3755 CAG|GTTTGTACCC...GGTTTCTTCATT/GGTTTCTTCATT...TGCAG|CTG 0 1 97.34
163478343 GT-AG 0 0.0036465883565429 329 rna-XM_034345674.1 29350645 12 29033948 29034276 Prunus dulcis 3755 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.079ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)