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 = 27390990

✎ 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
152560193 GT-AG 0 2.2191114896263417e-05 101 rna-XM_008799377.4 27390990 1 14772954 14773054 Phoenix dactylifera 42345 CCG|GTATGGAGCT...TTTTCTTGGATG/CTTTTGGTGATT...TTTAG|TTC 1 1 1.574
152560194 GT-AG 0 0.0052990642908281 14010 rna-XM_008799377.4 27390990 2 14758834 14772843 Phoenix dactylifera 42345 CAG|GTACACTTCT...TTGTTCTGAGTC/TTTGTTCTGAGT...TGCAG|AAT 0 1 2.292
152560195 GT-AG 0 1.000000099473604e-05 107 rna-XM_008799377.4 27390990 3 14758573 14758679 Phoenix dactylifera 42345 AAG|GTAGGACCTC...TTGGCTTTAGTA/TATATTCTCACT...GATAG|TTT 1 1 3.298
152560196 GT-AG 0 6.629763551466077e-05 179 rna-XM_008799377.4 27390990 4 14752314 14752492 Phoenix dactylifera 42345 AAG|GTATGATGAC...TTATTGTTAACA/TTATTGTTAACA...CTTAG|GTA 0 1 43.005
152560197 GT-AG 0 0.068310135106794 87 rna-XM_008799377.4 27390990 5 14751609 14751695 Phoenix dactylifera 42345 AAT|GTAGCTATCA...TCTTTTTTACTT/TTCTTTTTTACT...ACCAG|GTG 0 1 47.042
152560198 GT-AG 0 0.0551408671424564 1666 rna-XM_008799377.4 27390990 6 14749762 14751427 Phoenix dactylifera 42345 ACG|GTATCTCAGA...TTTACTTTTGTT/ATTCATTTCATT...TATAG|GAT 1 1 48.224
152560199 GT-AG 0 1.000000099473604e-05 88 rna-XM_008799377.4 27390990 7 14749439 14749526 Phoenix dactylifera 42345 CAG|GTCAGTTTTG...TAAGCCCTGACT/TAAGCCCTGACT...TGCAG|TTT 2 1 49.758
152560200 GT-AG 0 1.5245321719980882e-05 85 rna-XM_008799377.4 27390990 8 14744791 14744875 Phoenix dactylifera 42345 CAG|GTAAGCATGT...CTGTCATTGATT/CTGTCATTGATT...GATAG|ATT 2 1 79.559
152560201 GT-AG 0 3.302885480225446e-05 282 rna-XM_008799377.4 27390990 9 14744286 14744567 Phoenix dactylifera 42345 CTG|GTATGGAATT...AAAATCTTACTT/CTTTGTTTAATT...TGCAG|TTT 0 1 81.015
152560202 GT-AG 0 1.000000099473604e-05 515 rna-XM_008799377.4 27390990 10 14743366 14743880 Phoenix dactylifera 42345 CAG|GTTGATTATG...ATGTTCTTATTT/CATGTTCTTATT...GACAG|GGG 0 1 83.66
152560203 GT-AG 0 0.0010173595046909 647 rna-XM_008799377.4 27390990 11 14742575 14743221 Phoenix dactylifera 42345 CAG|GTATGTGCTA...CTGCTCTTAACT/CTTAACTTCATA...TGCAG|CGA 0 1 84.6
152560204 GT-AG 0 1.000000099473604e-05 857 rna-XM_008799377.4 27390990 12 14740692 14741548 Phoenix dactylifera 42345 CAG|GTAAATTTTT...TTCTGCTTCTCT/CATAAAGTCAGT...TGTAG|GGT 0 1 91.301
152560205 GT-AG 0 1.861681551336597e-05 1101 rna-XM_008799377.4 27390990 13 14739087 14740187 Phoenix dactylifera 42345 TTG|GTATGACAAT...CTATCTTTTATG/TATGTGCTAATA...TGCAG|ATG 0 1 94.592

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