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

✎ 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
167376194 GT-AG 0 1.000000099473604e-05 242 rna-XM_009333941.1 29894898 1 789318 789559 Pygoscelis adeliae 9238 GTG|GTAACGGGAG...AAATCCTTTCCC/TTACATCTAATG...TTAAG|TCG 1 1 12.76
167376195 GT-AG 0 0.0356643290354742 658 rna-XM_009333941.1 29894898 2 788464 789121 Pygoscelis adeliae 9238 CAG|GTACCCACCC...GTTTCTTTCTCC/CAGACATTTATT...CAAAG|GTC 2 1 26.81
167376196 GT-AG 0 1.000000099473604e-05 4198 rna-XM_009333941.1 29894898 3 784119 788316 Pygoscelis adeliae 9238 AGG|GTAAGGAGAG...ATCTCCTCAAAT/CATCTCCTCAAA...CAAAG|GTA 2 1 37.348
167376197 GT-AG 0 1.000000099473604e-05 1570 rna-XM_009333941.1 29894898 4 782281 783850 Pygoscelis adeliae 9238 GCG|GTAAAGGTTG...TGGGTCTTGATA/TGGGTCTTGATA...TGCAG|TAT 0 1 56.559
167376198 GT-AG 0 1.000000099473604e-05 2680 rna-XM_009333941.1 29894898 5 779498 782177 Pygoscelis adeliae 9238 ATG|GTAAGGAATT...AATTTCTTACCT/GAATTTCTTACC...TGCAG|GGA 1 1 63.943
167376199 GT-AG 0 8.931849537451478e-05 19653 rna-XM_009333941.1 29894898 6 759784 779436 Pygoscelis adeliae 9238 ATG|GTATGTAACT...GTATATTTAAAA/TTAAAACTGACT...TGTAG|GTA 2 1 68.315
167376200 GT-AG 0 1.000000099473604e-05 822 rna-XM_009333941.1 29894898 7 758886 759707 Pygoscelis adeliae 9238 AAG|GTGAGTAGAA...ATTTGCTTATAA/TATTTGCTTATA...CATAG|GAA 0 1 73.763
167376201 GT-AG 0 1.000000099473604e-05 2289 rna-XM_009333941.1 29894898 8 756519 758807 Pygoscelis adeliae 9238 CAG|GTAAAATAGT...AGTGGTTTGACA/GACAGTTTCATC...TGCAG|GTT 0 1 79.355
167376202 GT-AG 0 1.000000099473604e-05 1960 rna-XM_009333941.1 29894898 9 754460 756419 Pygoscelis adeliae 9238 CGG|GTAATGAAAC...CTCCCCTTTGTT/CTGCCTGTCACA...TGTAG|GTT 0 1 86.452
167376203 GT-AG 0 0.0025676609789829 2401 rna-XM_009333941.1 29894898 10 752005 754405 Pygoscelis adeliae 9238 AAG|GTAACCAGTC...TCCCATTTAACT/ACTCTTCTCACA...CACAG|TGT 0 1 90.323
167376204 GT-AG 0 0.0002162496448758 1886 rna-XM_009333941.1 29894898 11 750038 751923 Pygoscelis adeliae 9238 GAG|GTAGCAGTCT...GTTCTCTTATTG/TGTTCTCTTATT...TCCAG|GAT 0 1 96.129

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