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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
118866679 GT-AG 0 1.000000099473604e-05 247 rna-XM_035013030.1 21930972 1 9733 9979 Mirounga leonina 9715 AAG|GTGAGTCACG...GGCGCCTGGGCC/CCTGTGGTCAGG...CCCAG|GAG 0 1 14.103
118866680 GT-AG 0 1.000000099473604e-05 197 rna-XM_035013030.1 21930972 2 9428 9624 Mirounga leonina 9715 AAG|GTGGGGTGCA...GCCTCCCTGCTC/GTGGGGCTGACG...CCCAG|GCG 0 1 21.795
118866681 GT-AG 0 1.000000099473604e-05 76 rna-XM_035013030.1 21930972 3 9202 9277 Mirounga leonina 9715 GAG|GTGAGCCGGC...CATGCCTGTGCT/CCTGTGCTCAGG...TGCAG|GTG 0 1 32.479
118866682 GT-AG 0 1.000000099473604e-05 88 rna-XM_035013030.1 21930972 4 9014 9101 Mirounga leonina 9715 TGG|GTGAGCGTCC...TGATCCTTGCCT/TGCCCGCTGATC...TGCAG|AGC 1 1 39.601
118866683 GT-AG 0 1.000000099473604e-05 397 rna-XM_035013030.1 21930972 5 8582 8978 Mirounga leonina 9715 AAG|GTGAGGTGCT...GACACCATATCT/GCAGCTCTGACA...CCTAG|GAG 0 1 42.094
118866684 GT-AG 0 1.000000099473604e-05 109 rna-XM_035013030.1 21930972 6 8422 8530 Mirounga leonina 9715 AAG|GTAGGGGCGG...GGGTTCTTGGAG/GGTGCACCCACA...GGCAG|CTG 0 1 45.726
118866685 GT-AG 0 1.000000099473604e-05 192 rna-XM_035013030.1 21930972 7 8118 8309 Mirounga leonina 9715 TGG|GTGAGTGCTG...TGGGGCTTCACA/TGGGGCTTCACA...TGCAG|GGG 1 1 53.704
118866686 GT-AG 0 1.000000099473604e-05 185 rna-XM_035013030.1 21930972 8 7872 8056 Mirounga leonina 9715 CCT|GTGAGTACTC...TCTTCGTTGCTC/CTGCTGCTCAGT...CCTAG|CGA 2 1 58.048
118866687 GT-AG 0 1.000000099473604e-05 87 rna-XM_035013030.1 21930972 9 7674 7760 Mirounga leonina 9715 CTC|GTGAGTGCCA...GGGGTCTCACTC/GGGGGTCTCACT...CCCAG|CCA 2 1 65.954
118866688 GT-AG 0 1.000000099473604e-05 102 rna-XM_035013030.1 21930972 10 7411 7512 Mirounga leonina 9715 CTG|GTGAGTGCGG...AGGGCCTGGTCT/AGCCAGTACACC...CCTAG|AGC 1 1 77.422
118866689 GT-AG 0 1.000000099473604e-05 108 rna-XM_035013030.1 21930972 11 7220 7327 Mirounga leonina 9715 CAG|GTGAGCACGC...GTTTCCTGGCTG/GGTGATGTCATA...TGCAG|GCC 0 1 83.333
118866690 GT-AG 0 1.000000099473604e-05 83 rna-XM_035013030.1 21930972 12 7023 7105 Mirounga leonina 9715 GAG|GTGAGGGGGT...CTGTCCGTCCCT/GGAGCGTCCATC...TGCAG|GTC 0 1 91.453

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