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)

9 rows where transcript_id = 29320828

✎ 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
163356673 GT-AG 0 1.000000099473604e-05 1756 rna-XM_021962545.1 29320828 1 339842 341597 Prunus avium 42229 GAG|GTAGGTGGTT...TACTGCTTAAAC/CTTAAACTTATT...TATAG|AAA 2 1 6.422
163356674 GT-AG 0 8.51101627346857e-05 126 rna-XM_021962545.1 29320828 2 339025 339150 Prunus avium 42229 AAT|GTAAGTTTAT...GTTTTGTTGATT/GTTTTGTTGATT...TCCAG|GAG 0 1 16.719
163356675 GT-AG 0 1.5411253938855812e-05 113 rna-XM_021962545.1 29320828 3 337775 337887 Prunus avium 42229 CAG|GTATGGGATG...CTCTTTTTATCT/CCTCTTTTTATC...CTCAG|GTT 0 1 33.661
163356676 GT-AG 0 1.000000099473604e-05 862 rna-XM_021962545.1 29320828 4 336223 337084 Prunus avium 42229 CTT|GTAAGATCAG...GTTTCTTTACAC/TGTTTCTTTACA...TTCAG|TTG 0 1 43.943
163356677 GT-AG 0 0.0001440588170689 696 rna-XM_021962545.1 29320828 5 335218 335913 Prunus avium 42229 AAG|GTGTTTTCCT...TTGTTCTAAATT/TTTGTTCTAAAT...CACAG|AAA 0 1 48.547
163356678 GT-AG 0 0.0011053135927296 249 rna-XM_021962545.1 29320828 6 334633 334881 Prunus avium 42229 GAG|GTCTGTTTTC...ACCATTTTAACA/CTAATTCTGATC...TGCAG|CTA 0 1 53.554
163356679 GT-AG 0 1.000000099473604e-05 137 rna-XM_021962545.1 29320828 7 334397 334533 Prunus avium 42229 GAG|GTGTGTACCT...AGTTCCTTCCCA/CAAGAATTTACT...TGCAG|GTT 0 1 55.029
163356680 GT-AG 0 1.7905160218554043e-05 910 rna-XM_021962545.1 29320828 8 333052 333961 Prunus avium 42229 GAG|GTTTGTATAT...ATAAACTTAACA/TATAAACTTAAC...TGCAG|AGA 0 1 61.511
163356681 GT-AG 0 3.0062074896138453e-05 659 rna-XM_021962545.1 29320828 9 330113 330771 Prunus avium 42229 GAA|GTAAGTCTTT...AAGTCCATAGAT/TTGCAAATAACA...TTCAG|ATG 0 1 95.485

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