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)

12 rows where transcript_id = 13349291

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
71011060 GT-AG 0 2.8210320877205577e-05 115 mRNA_1250 13349291 1 105558885 105558999 Entomophaga maimaiga 42810 GAG|GTAATTACTG...TTATTCTTAAAT/ATTATTCTTAAA...CTTAG|GCA 1 1 0.899
71011061 GT-AG 0 1.000000099473604e-05 52 mRNA_1250 13349291 2 105558579 105558630 Entomophaga maimaiga 42810 AGG|GTGAGTTTTT...TTTTTCTTTTTT/TTCTTTTTTATA...ATTAG|GAT 0 1 9.056
71011062 GT-AG 0 7.389476142429229e-05 39 mRNA_1250 13349291 3 105558294 105558332 Entomophaga maimaiga 42810 ACG|GTAAGTTGTT...TTTACCTTACTC/TTTTACCTTACT...CCAAG|GTG 0 1 16.956
71011063 GT-AG 0 0.0003732608281101 38 mRNA_1250 13349291 4 105558137 105558174 Entomophaga maimaiga 42810 TGA|GTAAGATTTA...TATTTCTTATTT/TTATTTCTTATT...TTCAG|ATG 2 1 20.777
71011064 GT-AG 0 1.000000099473604e-05 35 mRNA_1250 13349291 5 105557887 105557921 Entomophaga maimaiga 42810 TAG|GTAATGATTT...TGTGTATTGAAA/TGTGTATTGAAA...TTAAG|TGA 1 1 27.681
71011065 GT-AG 0 0.0026516792866169 39 mRNA_1250 13349291 6 105557634 105557672 Entomophaga maimaiga 42810 TGA|GTAAACACTT...TTTGTTTTATCT/TTTTATCTAACT...TTCAG|GTA 2 1 34.554
71011066 GT-AG 0 0.0001261048653892 35 mRNA_1250 13349291 7 105557433 105557467 Entomophaga maimaiga 42810 CGG|GTACTTTACA...AAATTCTTCTCT/TCTTCTCTCACT...TGTAG|GAT 0 1 39.884
71011067 GT-AG 0 1.000000099473604e-05 37 mRNA_1250 13349291 8 105557204 105557240 Entomophaga maimaiga 42810 GAG|GTAAAGTGTT...CCGATTTGGAAT/TTGGAATTGAAA...TGTAG|GTT 0 1 46.05
71011068 GT-AG 0 0.0017266561897 34 mRNA_1250 13349291 9 105556993 105557026 Entomophaga maimaiga 42810 AAG|GTAAATTTTT...AACTCCTTAACT/CCTTAACTCACG...GCCAG|GCT 0 1 51.734
71011069 GT-AG 0 0.0003011754852936 50 mRNA_1250 13349291 10 105556716 105556765 Entomophaga maimaiga 42810 GGC|GTAAGTTTTG...TCGCTCTTCAAA/TCGCTCTTCAAA...TATAG|TGA 2 1 59.024
71011070 GT-AG 0 1.000000099473604e-05 39 mRNA_1250 13349291 11 105556033 105556071 Entomophaga maimaiga 42810 ATG|GTAAAACGGC...CAGGCTTTACTT/TTGTGACTGACT...CGTAG|ACT 1 1 79.705
71011071 GT-AG 0 1.000000099473604e-05 43 mRNA_1250 13349291 12 105555767 105555809 Entomophaga maimaiga 42810 CAG|GTTTGGCCCG...GATTTTTTGATC/GATTTTTTGATC...TGTAG|TTT 2 1 86.866

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