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)

10 rows where transcript_id = 8594547

✎ 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
46265525 GT-AG 0 1.000000099473604e-05 510 rna-XM_025095719.1 8594547 1 19917189 19917698 Citrus sinensis 2711 CAG|GTTGGATTTT...AAGATTTTAATT/AAGATTTTAATT...ATCAG|GAG 2 1 11.208
46265526 GT-AG 0 1.000000099473604e-05 780 rna-XM_025095719.1 8594547 2 19915680 19916459 Citrus sinensis 2711 GAG|GTAAATGGTA...TATATTTTGATT/TTTTTTCTAATA...TTTAG|TAT 2 1 24.45
46265527 GT-AG 0 1.000000099473604e-05 138 rna-XM_025095719.1 8594547 3 19915388 19915525 Citrus sinensis 2711 CAG|GTTGTGCTTT...TGTTTCTTATAG/TTGTTTCTTATA...TCTAG|GAA 0 1 27.248
46265528 GT-AG 0 5.133964202733928e-05 412 rna-XM_025095719.1 8594547 4 19914631 19915042 Citrus sinensis 2711 ACT|GTAAGTTGTC...AATACCTTGTGA/AAGGGTTTTATT...AAAAG|CCA 0 1 33.515
46265529 GT-AG 0 1.000000099473604e-05 94 rna-XM_025095719.1 8594547 5 19913601 19913694 Citrus sinensis 2711 CAG|GTAAGTTAAC...AATGCCTAATAT/AAATGCCTAATA...GTCAG|AAT 0 1 50.518
46265530 GT-AG 0 1.000000099473604e-05 413 rna-XM_025095719.1 8594547 6 19912856 19913268 Citrus sinensis 2711 TGG|GTAATTATCA...CTTTCCTCACTG/TCTTTCCTCACT...TACAG|ATT 2 1 56.549
46265531 GT-AG 0 3.057339445978299e-05 84 rna-XM_025095719.1 8594547 7 19912648 19912731 Citrus sinensis 2711 GAG|GTAACAATGA...ATTCCCTTTTCG/TTTCGATTCACT...TACAG|GTT 0 1 58.801
46265532 GT-AG 0 1.000000099473604e-05 344 rna-XM_025095719.1 8594547 8 19912163 19912506 Citrus sinensis 2711 GAG|GTGAGGCTGG...TTGCTCTTGACA/TTTCTGCTGATT...TTTAG|GAA 0 1 61.362
46265533 GT-AG 0 1.000000099473604e-05 571 rna-XM_025095719.1 8594547 9 19910050 19910620 Citrus sinensis 2711 CAG|GTGCCAATCC...CTATCCTAATTT/TCTATCCTAATT...GAAAG|GTT 0 1 89.373
46265534 GT-AG 0 0.0062500355605635 106 rna-XM_025095719.1 8594547 10 19909677 19909782 Citrus sinensis 2711 GCT|GTAAGTTTTT...TTTATTTTGATT/TTTATTTTGATT...TGCAG|TCA 0 1 94.223

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