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)

14 rows where transcript_id = 38062808

✎ 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
210096337 GT-AG 0 1.000000099473604e-05 302 rna-XM_034844777.1 38062808 1 587926 588227 Vitis riparia 96939 AAG|GTTAGTTTCT...TGGGCATTAATA/GTTGAATTGATT...GTTAG|TGG 1 1 7.468
210096338 GT-AG 0 1.000000099473604e-05 106 rna-XM_034844777.1 38062808 2 587527 587632 Vitis riparia 96939 CAG|GTTCGATCCT...TTATTCTTACTT/ATTATTCTTACT...CACAG|GGT 0 1 17.413
210096339 GT-AG 0 1.000000099473604e-05 104 rna-XM_034844777.1 38062808 3 587321 587424 Vitis riparia 96939 CAG|GTAAATATGG...GGTGTTTAAATT/GGGTGTTTAAAT...TGCAG|GAA 0 1 20.876
210096340 GT-AG 0 0.0042852145602679 139 rna-XM_034844777.1 38062808 4 587005 587143 Vitis riparia 96939 GAA|GTATGATTTG...TGTTTTTCAATC/ATGTTTTTCAAT...AGCAG|ATG 0 1 26.884
210096341 GT-AG 0 0.0003268990322738 105 rna-XM_034844777.1 38062808 5 586624 586728 Vitis riparia 96939 AAG|GTATGGACTT...TTCTTCTTGATT/CAATGTTTCATT...TTCAG|ATT 0 1 36.253
210096342 GT-AG 0 0.0007367749660569 80 rna-XM_034844777.1 38062808 6 586272 586351 Vitis riparia 96939 AAG|GTACTTCTTC...TATTCCTTATGA/TTATTCTTCATG...GCCAG|AAC 2 1 45.485
210096343 GT-AG 0 3.406345248224832e-05 83 rna-XM_034844777.1 38062808 7 586071 586153 Vitis riparia 96939 GAG|GTAGGCCTAG...GTGTTCTAATTT/CGTGTTCTAATT...ACCAG|CTG 0 1 49.491
210096344 GT-AG 0 0.0003280629859366 125 rna-XM_034844777.1 38062808 8 585559 585683 Vitis riparia 96939 GGG|GTAACTAGAC...CTGATCTTCACT/CTGATCTTCACT...GGCAG|TTG 0 1 62.627
210096345 GT-AG 0 0.005739382849651 108 rna-XM_034844777.1 38062808 9 585298 585405 Vitis riparia 96939 AAA|GTAAACTGCT...GTTACCTTGAAC/TTGGCTTTCAGT...CACAG|TTT 0 1 67.821
210096346 GT-AG 0 1.000000099473604e-05 244 rna-XM_034844777.1 38062808 10 584925 585168 Vitis riparia 96939 CAG|GTTATTCCCT...TTCTCCTTCTTT/CTGATATTGATA...TTCAG|GTG 0 1 72.2
210096347 GT-AG 0 0.0002080764751601 533 rna-XM_034844777.1 38062808 11 584155 584687 Vitis riparia 96939 AAG|GTATGATTTA...TGTTTTTCAACC/CTGTTTTTCAAC...TACAG|GTT 0 1 80.244
210096348 GT-AG 0 0.0018110110798133 128 rna-XM_034844777.1 38062808 12 583950 584077 Vitis riparia 96939 CAG|GTACTTTGAT...TCTTTCTTAATT/TCTTTCTTAATT...GCTAG|CAC 2 1 82.858
210096349 GT-AG 0 1.1436415434734807e-05 125 rna-XM_034844777.1 38062808 13 583638 583762 Vitis riparia 96939 AAG|GTATAAGATC...ATAAACTTGATT/GCATATCTCATA...TGTAG|TTT 0 1 89.206
210096350 GT-AG 0 1.000000099473604e-05 159 rna-XM_034844777.1 38062808 14 583278 583436 Vitis riparia 96939 AAA|GTGAGTCCTG...TACACCTCAATT/CATATACTAATA...TGCAG|AAA 0 1 96.029

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