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)

10 rows where transcript_id = 29402346

✎ 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
163707177 GT-AG 0 0.0545786902014391 199 rna-XM_020555626.1 29402346 1 30908658 30908856 Prunus persica 3760 CAG|GTATGCTTTC...TGGTGCTTATCT/GCTTATCTAATT...TGTAG|GAG 2 1 10.537
163707178 GT-AG 0 0.0008811004730844 80 rna-XM_020555626.1 29402346 2 30907783 30907862 Prunus persica 3760 CAG|GTATGATTTC...TTTGTTTTAGTG/CTTTGTTTTAGT...TGCAG|TAC 2 1 25.577
163707179 GT-AG 0 0.0001528699348654 102 rna-XM_020555626.1 29402346 3 30907527 30907628 Prunus persica 3760 CAG|GTTTTGTTTT...TTTCTTTTATCT/ATTTCTTTTATC...AACAG|GAA 0 1 28.49
163707180 GT-AG 0 0.0134799179686874 161 rna-XM_020555626.1 29402346 4 30907021 30907181 Prunus persica 3760 ACA|GTAATCTTCT...CTGTCCCTAATT/AATTTTGTCATT...TGTAG|GTC 0 1 35.017
163707181 GT-AG 0 1.2870493029157572e-05 87 rna-XM_020555626.1 29402346 5 30906175 30906261 Prunus persica 3760 CAG|GTAATTCATT...TAGTTCTTATTA/TTAGTTCTTATT...GGCAG|ACA 0 1 49.376
163707182 GT-AG 0 1.000000099473604e-05 81 rna-XM_020555626.1 29402346 6 30905762 30905842 Prunus persica 3760 TGG|GTAAGTACTA...GTGATCTTATTT/AGTGATCTTATT...AACAG|GTT 2 1 55.656
163707183 GT-AG 0 1.000000099473604e-05 111 rna-XM_020555626.1 29402346 7 30905524 30905634 Prunus persica 3760 GAG|GTGCTTTTAA...AGTTTTGTAACT/AGTTTTGTAACT...TGCAG|CTT 0 1 58.059
163707184 GT-AG 0 1.0207072474353518e-05 140 rna-XM_020555626.1 29402346 8 30905219 30905358 Prunus persica 3760 ATT|GTAAGTACAA...GTTTCCTTGGTT/CTTTTGCTAATC...AATAG|GGT 0 1 61.18
163707185 GT-AG 0 1.000000099473604e-05 129 rna-XM_020555626.1 29402346 9 30903560 30903688 Prunus persica 3760 CAG|GTTAGGCCGC...AATGGCTTAAAT/ATTCTTGTGATC...GGCAG|GTC 0 1 90.125
163707186 GT-AG 0 0.0737112130618221 167 rna-XM_020555626.1 29402346 10 30903126 30903292 Prunus persica 3760 GCG|GTATGCCTTC...TAGCTATTAACT/TAAATGCTAACT...TCCAG|TCT 0 1 95.176

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