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

✎ 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
183116357 GT-AG 0 1.000000099473604e-05 377 rna-XM_011077399.2 32739453 1 9423638 9424014 Sesamum indicum 4182 CAG|GTGACTAGCT...TTTGCTTCGATT/CTTCTGCTAATA...TGTAG|GGC 2 1 9.898
183116358 GT-AG 0 1.000000099473604e-05 405 rna-XM_011077399.2 32739453 2 9424798 9425202 Sesamum indicum 4182 GAG|GTAAATATTG...TTTACCTTTCCC/TATAAGTTTACC...TGCAG|CAA 2 1 25.215
183116359 GT-AG 0 4.852892763463262e-05 90 rna-XM_011077399.2 32739453 3 9425357 9425446 Sesamum indicum 4182 CAG|GTTCCATCCT...GTTGCTGTATTT/ATATGATTTATG...AACAG|GAA 0 1 28.228
183116360 GT-AG 0 1.989329192989817e-05 531 rna-XM_011077399.2 32739453 4 9425792 9426322 Sesamum indicum 4182 ACG|GTAGTTTACT...GGGCACTTATTC/CACTTATTCAGT...TATAG|GTT 0 1 34.977
183116361 GT-AG 0 1.000000099473604e-05 81 rna-XM_011077399.2 32739453 5 9426501 9426581 Sesamum indicum 4182 CTG|GTAAGGCCGT...AATCTCTCAAAA/AAGAAACTAATC...TATAG|GAT 1 1 38.459
183116362 GT-AG 0 0.0032129674824538 81 rna-XM_011077399.2 32739453 6 9427040 9427120 Sesamum indicum 4182 CAG|GTAACTACTT...ATATTCTTAAAC/GTTTGTCTCATA...GCCAG|TCA 0 1 47.418
183116363 GT-AG 0 2.1927688066267115e-05 126 rna-XM_011077399.2 32739453 7 9427453 9427578 Sesamum indicum 4182 TGG|GTATGAGATA...GCCTCTTTACTC/TGCCTCTTTACT...GACAG|GTT 2 1 53.912
183116364 GT-AG 0 1.000000099473604e-05 124 rna-XM_011077399.2 32739453 8 9427706 9427829 Sesamum indicum 4182 GAG|GTGCTTACAA...TTTATTTTAAAA/CGTCTTCTAATT...CTTAG|CTT 0 1 56.397
183116365 GT-AG 0 0.0254354372660884 184 rna-XM_011077399.2 32739453 9 9427995 9428178 Sesamum indicum 4182 GAA|GTAACCACGT...CTTGCTTTATAT/GCTGCTCTGACT...AACAG|GAC 0 1 59.624
183116366 GT-AG 0 1.000000099473604e-05 91 rna-XM_011077399.2 32739453 10 9429715 9429805 Sesamum indicum 4182 CAG|GTTAAACGTC...TCTCTGTTAAAT/TCTCTGTTAAAT...TATAG|GTT 0 1 89.671
183116367 GT-AG 0 5.011205867930438e-05 98 rna-XM_011077399.2 32739453 11 9430073 9430170 Sesamum indicum 4182 GCG|GTACTAATTC...ATTTCTTTCTCT/CTCTTTGTTATT...TGCAG|TCG 0 1 94.894

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