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)

13 rows where transcript_id = 3611871

✎ 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
18021437 GT-AG 0 0.0004537838746767 114 rna-XM_020400497.1 3611871 1 32040451 32040564 Asparagus officinalis 4686 CAA|GTATAATGAC...AGATCCTGAAAA/ACTACATTCAAC...TTCAG|GTT 0 1 2.96
18021438 GT-AG 0 3.074263470767523e-05 7331 rna-XM_020400497.1 3611871 2 32040691 32048021 Asparagus officinalis 4686 CAG|GTAGTCGCTC...TTCCCTTTGGTC/TCTCCTCCCACT...CTCAG|ATT 0 1 4.933
18021439 GT-AG 0 0.0116310953950876 5743 rna-XM_020400497.1 3611871 5 32049361 32055103 Asparagus officinalis 4686 TAG|GTATGCCCTT...CAGTTTTTAATC/CAGTTTTTAATC...TGCAG|GTT 2 1 25.873
18021440 GT-AG 0 1.000000099473604e-05 211 rna-XM_020400497.1 3611871 6 32055422 32055632 Asparagus officinalis 4686 GAG|GTACTGTGGT...TATGTTTTACTG/TTATGTTTTACT...TGCAG|GAT 2 1 30.854
18021441 GT-AG 0 1.000000099473604e-05 61 rna-XM_020400497.1 3611871 7 32055982 32056042 Asparagus officinalis 4686 CAG|GTAAATGAGT...TTTTTTTTGTTG/GTAGATCTGATT...TGCAG|GAA 0 1 36.319
18021442 GT-AG 0 9.771995750468672e-05 86 rna-XM_020400497.1 3611871 8 32056466 32056551 Asparagus officinalis 4686 AAG|GTCTATAACT...AAAACTTTAATT/AAAACTTTAATT...TGCAG|ATG 0 1 42.944
18021443 GT-AG 0 1.896371435348985e-05 1279 rna-XM_020400497.1 3611871 9 32056842 32058120 Asparagus officinalis 4686 CGA|GTAAGTCCAT...TGTCTTTTGATG/TTAATATTTAAT...ATCAG|ATC 2 1 47.486
18021444 GT-AG 0 9.314161861814162e-05 3281 rna-XM_020400497.1 3611871 10 32058395 32061675 Asparagus officinalis 4686 AAG|GTTTGTTTCT...ATATTGTTAAAC/ATATTGTTAAAC...CACAG|GCA 0 1 51.778
18021445 GT-AG 0 1.7304170404421587e-05 85 rna-XM_020400497.1 3611871 11 32062182 32062266 Asparagus officinalis 4686 TGC|GTAAGTAGTA...TTTTTTTTTTCC/TGGAGATTTATA...TACAG|GCA 2 1 59.702
18021446 GT-AG 0 0.1354139226142206 108 rna-XM_020400497.1 3611871 12 32062589 32062696 Asparagus officinalis 4686 ATG|GTACCATTCT...TACCCCTTATTC/AAATCATTTATT...TACAG|GTC 0 1 64.745
18021447 GT-AG 0 1.000000099473604e-05 179 rna-XM_020400497.1 3611871 13 32063040 32063218 Asparagus officinalis 4686 CAG|GTAGGATAGC...AATTCCCTATCT/AAGTTTCTGATT...TGCAG|GAT 1 1 70.117
18021448 GT-AG 0 1.000000099473604e-05 162 rna-XM_020400497.1 3611871 14 32063908 32064069 Asparagus officinalis 4686 CAG|GTTGGTATAC...GGAGCCTTAACT/TAACTCTTAATT...CACAG|GCT 0 1 80.908
18035424 GT-AG 0 0.0034641535845877 1173 rna-XM_020400497.1 3611871 15 32064719 32065891 Asparagus officinalis 4686 GAG|GTATGCAATT...TTTTTCTTCTTT/GTACTGTTTATA...GCTAG|TTT   0 91.073

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