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

✎ 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
210095727 GT-AG 0 8.067818848246012e-05 8577 rna-XM_034825807.1 38062752 1 5561655 5570231 Vitis riparia 96939 GAG|GTAATTTCAG...TGTTCTTTAATT/TGTTCTTTAATT...TGCAG|TGG 0 1 3.54
210095728 GT-AG 0 1.000000099473604e-05 131 rna-XM_034825807.1 38062752 2 5561354 5561484 Vitis riparia 96939 GTG|GTGAGATTTG...TGGTTCTTACTT/CTGGTTCTTACT...TTTAG|GGA 2 1 7.326
210095729 GT-AG 0 1.000000099473604e-05 589 rna-XM_034825807.1 38062752 3 5560638 5561226 Vitis riparia 96939 GAG|GTAGTAACAT...ACAGCTTTATTG/TTGTTTCTCACC...GTCAG|TTG 0 1 10.154
210095730 GT-AG 0 0.0020393350340919 288 rna-XM_034825807.1 38062752 4 5560087 5560374 Vitis riparia 96939 AAG|GTATTATTTA...GATATTTTGAAT/GATATTTTGAAT...TCCAG|GTG 2 1 16.01
210095731 GT-AG 0 1.000000099473604e-05 79 rna-XM_034825807.1 38062752 5 5558339 5558417 Vitis riparia 96939 GAG|GTAAGTTGAA...CATTTTTTACAT/AATCTTTTCATT...TGCAG|GTG 0 1 53.173
210095732 GT-AG 0 1.000000099473604e-05 541 rna-XM_034825807.1 38062752 6 5557585 5558125 Vitis riparia 96939 GAG|GTAATGCAAG...TTCTTCCTGATT/TTCTTCCTGATT...TCCAG|TAT 0 1 57.916
210095733 GT-AG 0 1.000000099473604e-05 108 rna-XM_034825807.1 38062752 7 5557229 5557336 Vitis riparia 96939 GAG|GTCAGATTAT...CAATGCTTAATT/CTTAATTTAATT...TGCAG|ATT 2 1 63.438
210095734 GT-AG 0 3.276727183027818e-05 238 rna-XM_034825807.1 38062752 8 5556579 5556816 Vitis riparia 96939 GAG|GTTTTTGTTT...ATCTTCCTGACT/ATCTTCCTGACT...CATAG|GTT 0 1 72.612
210095735 GT-AG 0 1.000000099473604e-05 1073 rna-XM_034825807.1 38062752 9 5555300 5556372 Vitis riparia 96939 GAG|GTCGGCAACA...ATTACCTTCATC/ATTACCTTCATC...ATCAG|GCG 2 1 77.199
210095736 GT-AG 0 0.002852513655154 525 rna-XM_034825807.1 38062752 10 5554417 5554941 Vitis riparia 96939 GAG|GTACTTTCCT...CATTTTTTATTT/GCATTTTTTATT...TTCAG|ATA 0 1 85.17
210095737 GT-AG 0 0.0044364170966905 9519 rna-XM_034825807.1 38062752 11 5544679 5554197 Vitis riparia 96939 TTG|GTACATTTTT...TTTTATTTAACA/TTTTATTTAACA...TATAG|GAG 0 1 90.047
210095738 GT-AG 0 1.2011605665158464e-05 2373 rna-XM_034825807.1 38062752 12 5541977 5544349 Vitis riparia 96939 CAG|GTCAATTTCT...TGCTTCTTGATG/TGAATTTTCACT...AACAG|GTA 2 1 97.373

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