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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
21001554 GT-AG 0 1.000000099473604e-05 310 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 1 538105 538414 Baryphthengus martii 176943 CAG|GTGAGCGGGG...TGCTTCCCGACT/GGGATCCTCACG...TGCAG|GAC 0 1 12.766
21001555 GT-AG 0 1.000000099473604e-05 123 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 2 537891 538013 Baryphthengus martii 176943 GAG|GTGAGTGTGC...TTTTCCTTCCTT/GCTGGGCTTACT...TCCAG|TTC 1 1 19.937
21001556 GT-AG 0 1.000000099473604e-05 158 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 3 537662 537819 Baryphthengus martii 176943 AGG|GTGAGGCCCT...TCGCTCTCACAG/GTCGCTCTCACA...GGCAG|GCG 0 1 25.532
21001557 GT-AG 0 1.000000099473604e-05 615 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 4 536768 537382 Baryphthengus martii 176943 GAG|GTACTGGGCG...TGATTCTGATTC/ATGATTCTGATT...AGGAG|CTG 0 1 47.518
21001558 GT-AG 0 1.000000099473604e-05 109 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 5 536614 536722 Baryphthengus martii 176943 GAG|GTGGGGATTT...GTCTCCTTTCCC/GCCTTTCTGAGT...CCCAG|GTG 0 1 51.064
21001559 GT-AG 1 99.40027250807168 213 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 6 536334 536546 Baryphthengus martii 176943 TGC|GTATCCTTCC...TTTTCCTTGAGC/TTTTCCTTGAGC...CCCAG|AAA 1 1 56.344
21001560 GT-AG 0 1.000000099473604e-05 355 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 7 535908 536262 Baryphthengus martii 176943 GAG|GTGAGCTGGG...GACTCCTGGCTC/CTGAGGATGACT...TCTAG|GTG 0 1 61.939
21001561 GT-AG 0 1.000000099473604e-05 80 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 8 535738 535817 Baryphthengus martii 176943 AAG|GTAGGGTCCC...GCACCCCCAGTC/TCGGTGCTCACT...GGCAG|TCG 0 1 69.031
21001562 GT-AG 0 1.000000099473604e-05 96 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 9 535531 535626 Baryphthengus martii 176943 CTG|GTGAGTGGTC...GTGCCCTGGGCT/GTGTCGCTGAGT...TCCAG|GTG 0 1 77.778
21001563 GT-AG 0 1.000000099473604e-05 227 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 10 535217 535443 Baryphthengus martii 176943 GAG|GTGAGGATGG...AGAGCCTTAATG/AAGAGCCTTAAT...GGTAG|GTC 0 1 84.634
21001564 GT-AG 0 1.000000099473604e-05 342 rna-gnl|WGS:VWZK|BARMAR_R04530_mrna 4057438 11 534809 535150 Baryphthengus martii 176943 CAG|GTACAGTGCT...GAGGCTTTGAGG/GAGGCTTTGAGG...CTTAG|AAC 0 1 89.835

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