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)

14 rows where transcript_id = 29402314

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163706634 GT-AG 0 1.000000099473604e-05 602 rna-XM_020569165.1 29402314 2 12624931 12625532 Prunus persica 3760 AGG|GTAATGTCTA...TATGTATTAAAT/TTTTTGCTCATT...TTCAG|ATA 0 1 9.177
163706635 GT-AG 0 0.0006923056510679 279 rna-XM_020569165.1 29402314 3 12624311 12624589 Prunus persica 3760 GGG|GTATGTCTCA...TGCTCCTGATTG/ATGCTCCTGATT...CATAG|GGT 2 1 12.994
163706636 GT-AG 0 0.0002508267412114 1643 rna-XM_020569165.1 29402314 4 12621995 12623637 Prunus persica 3760 AAG|GTATGTTCAT...AGGTTCTCAGCA/TAGGTTCTCAGC...TGTAG|GTA 0 1 20.526
163706637 GT-AG 0 0.0002767396776776 2598 rna-XM_020569165.1 29402314 5 12619292 12621889 Prunus persica 3760 GCT|GTAAGTTATT...CATTGTTTAACA/CATTGTTTAACA...TGCAG|GTC 0 1 21.701
163706638 GT-AG 0 1.000000099473604e-05 1090 rna-XM_020569165.1 29402314 6 12618021 12619110 Prunus persica 3760 TGA|GTGAGTAATG...GTGATTATGACA/ACGATACTTATA...GGCAG|CCT 1 1 23.727
163706639 GT-AG 0 1.000000099473604e-05 1675 rna-XM_020569165.1 29402314 7 12615932 12617606 Prunus persica 3760 ATG|GTAAGGTTCT...TATGGCTTATTG/CACATGTTCATC...ATTAG|ACT 1 1 28.36
163706640 GT-AG 0 1.000000099473604e-05 2021 rna-XM_020569165.1 29402314 8 12612130 12614150 Prunus persica 3760 CTG|GTGAGGCTAC...TATTCTTTATTG/TTATTCTTTATT...TTCAG|GTG 0 1 48.293
163706641 GT-AG 0 1.8746335234523185e-05 220 rna-XM_020569165.1 29402314 9 12611697 12611916 Prunus persica 3760 CGG|GTAGGTTGTG...TACGTTTTATTG/GTTTTATTGATA...TGCAG|GTT 0 1 50.677
163706642 GT-AG 0 1.000000099473604e-05 691 rna-XM_020569165.1 29402314 10 12608738 12609428 Prunus persica 3760 AAG|GTTAGTTGGA...TTGTTTTTGGCA/GAAAATCTCAAA...AACAG|GTG 0 1 76.06
163706643 GT-AG 0 0.0059315955184316 987 rna-XM_020569165.1 29402314 11 12607641 12608627 Prunus persica 3760 AAG|GTATTTCTTT...CATATTTTAAAT/CATATTTTAAAT...CCCAG|CCT 2 1 77.292
163706644 GT-AG 0 1.8188086814015875e-05 77 rna-XM_020569165.1 29402314 12 12607161 12607237 Prunus persica 3760 GCC|GTAAGTAATT...TGTTTCTTCCTT/AGTGATCTAATT...CGCAG|GTT 0 1 81.802
163706645 GT-AG 0 0.2210227857831056 187 rna-XM_020569165.1 29402314 13 12606659 12606845 Prunus persica 3760 GAG|GTATTCTTTA...TAATTCTCATCT/GTAATTCTCATC...TGCAG|GCT 0 1 85.327
163706646 GT-AG 0 0.0788183144880826 1171 rna-XM_020569165.1 29402314 14 12605230 12606400 Prunus persica 3760 CAG|GTATTCTCTT...CTAACCTTATAT/TCTTTCCTAACC...TACAG|GGT 0 1 88.215
163729400 GT-AG 0 0.0001249308788873 102 rna-XM_020569165.1 29402314 1 12626168 12626269 Prunus persica 3760 TTG|GTAACAAGTT...ATTTTCTTACAC/TATTTTCTTACA...GGCAG|GTA   0 2.697

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