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)

11 rows where transcript_id = 10113158

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55534710 GT-AG 0 1.4300970210413029e-05 3942 rna-XM_023078990.1 10113158 1 7689963 7693904 Cucurbita moschata 3662 AAG|GTTTGGCTTA...TCCCTCTTAATT/TTTTGACTCACC...TGCAG|AGG 0 1 19.419
55534711 GT-AG 0 2.1279856986240097e-05 203 rna-XM_023078990.1 10113158 2 7693955 7694157 Cucurbita moschata 3662 TAG|GTAATTATTC...GATTTTTTACTG/CCTTTTCTGATT...TACAG|TGT 2 1 20.6
55534712 GC-AG 0 1.000000099473604e-05 131 rna-XM_023078990.1 10113158 3 7694315 7694445 Cucurbita moschata 3662 CAG|GCAATAATTA...GTTGTCTGAATT/TGTTGTCTGAAT...TATAG|GAA 0 1 24.309
55534713 GT-AG 0 1.000000099473604e-05 368 rna-XM_023078990.1 10113158 4 7694665 7695032 Cucurbita moschata 3662 ACG|GTTAGTATTA...TCTTCCTTCTTT/TCTTTTCTGATT...TATAG|ATC 0 1 29.483
55534714 GT-AG 0 2.5278203880629648e-05 275 rna-XM_023078990.1 10113158 5 7695162 7695436 Cucurbita moschata 3662 GCT|GTAAGTAGTA...TTTGCCCTAATG/TTCTCTCTCATT...GATAG|GGG 0 1 32.53
55534715 GT-AG 0 1.000000099473604e-05 232 rna-XM_023078990.1 10113158 6 7697045 7697276 Cucurbita moschata 3662 CAG|GTTATTGTTG...ATTCTATTAATT/ATTCTATTAATT...TGTAG|ATA 0 1 70.517
55534716 GT-AG 0 1.000000099473604e-05 79 rna-XM_023078990.1 10113158 7 7697637 7697715 Cucurbita moschata 3662 CAG|GTTTGAATTT...TGGACCTTATTC/GTCATTTTCATC...TGTAG|AGA 0 1 79.022
55534717 GT-AG 0 8.815056473684453e-05 125 rna-XM_023078990.1 10113158 8 7697836 7697960 Cucurbita moschata 3662 CAG|GTTTACCTAT...ACCTCTTGGATG/TTTGGTTTGAGT...TGCAG|GAT 0 1 81.857
55534718 GT-AG 0 5.567176264023711e-05 638 rna-XM_023078990.1 10113158 9 7698132 7698769 Cucurbita moschata 3662 AGG|GTACAATTGC...CATTCTTTGTTG/TACTAATTAATT...TACAG|GAT 0 1 85.897
55534719 GT-AG 0 0.0007803777239545 73 rna-XM_023078990.1 10113158 10 7698935 7699007 Cucurbita moschata 3662 AAG|GTTTACATTC...GTATTCTCAACA/CTACTTCTGATC...TTTAG|GTC 0 1 89.794
55534720 GT-AG 0 1.4549871748327585e-05 2322 rna-XM_023078990.1 10113158 11 7699134 7701455 Cucurbita moschata 3662 CAG|GTAATTTATG...CTCCTTTTGAAT/CTCCTTTTGAAT...GGCAG|GTT 0 1 92.771

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