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)

13 rows where transcript_id = 18874331

✎ 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
100497879 GT-AG 0 0.4346348994070265 800 rna-XM_017413966.3 18874331 1 17479353 17480152 Kryptolebias marmoratus 37003 CAG|GTACCTTTTT...CTTCCTCTAACT/CTTCCTCTAACT...TTCAG|CTT 2 1 2.103
100497880 GT-AG 0 0.0039500629442932 99 rna-XM_017413966.3 18874331 2 17480793 17480891 Kryptolebias marmoratus 37003 GAG|GTATGATTGT...TATTTCTTGACA/TTAATTTTGATC...CACAG|GCT 0 1 14.682
100497881 GT-AG 0 1.000000099473604e-05 1998 rna-XM_017413966.3 18874331 3 17483667 17485664 Kryptolebias marmoratus 37003 AAG|GTGAGGAGGC...TTGACTGTAGCT/TTTTGGTTGACT...TACAG|GAG 0 1 69.222
100497882 GT-AG 0 1.000000099473604e-05 77 rna-XM_017413966.3 18874331 4 17485761 17485837 Kryptolebias marmoratus 37003 GAG|GTCTGGTATT...TACGGCTTCCCC/GTGGATGTCACG...CACAG|GAT 0 1 71.108
100497883 GT-AG 0 1.000000099473604e-05 86 rna-XM_017413966.3 18874331 5 17486057 17486142 Kryptolebias marmoratus 37003 AGA|GTGAGTCCTG...ACCTTCTTAATC/AAATGTCTAACA...ACCAG|TCA 0 1 75.413
100497884 GT-AG 0 1.000000099473604e-05 164 rna-XM_017413966.3 18874331 6 17486166 17486329 Kryptolebias marmoratus 37003 AAG|GTAGGCAAGC...ACTGTATTGACC/ACTGTATTGACC...ATCAG|ACT 2 1 75.865
100497885 GT-AG 0 0.0004750704663152 114 rna-XM_017413966.3 18874331 7 17486455 17486568 Kryptolebias marmoratus 37003 CAG|GTAGCTCCCC...CAGATCTTGCTT/CAGGTTCAGATC...CTTAG|TGC 1 1 78.322
100497886 GT-AG 0 1.000000099473604e-05 370 rna-XM_017413966.3 18874331 8 17486704 17487073 Kryptolebias marmoratus 37003 GAG|GTAAAATACT...CTTTCTTTTGTT/AAACATATAATC...CACAG|CCG 1 1 80.975
100497887 GT-AG 0 1.000000099473604e-05 112 rna-XM_017413966.3 18874331 9 17487221 17487332 Kryptolebias marmoratus 37003 CCG|GTCAGCCCGC...TTGACCTTAATG/TTGAAGTTGACC...GTCAG|CTC 1 1 83.864
100497888 GT-AG 0 1.000000099473604e-05 114 rna-XM_017413966.3 18874331 10 17487481 17487594 Kryptolebias marmoratus 37003 CCG|GTGGGTGAAG...GTTTTCTTGATA/GTTTTCTTGATA...TCTAG|ATC 2 1 86.773
100497889 GT-AG 0 1.000000099473604e-05 515 rna-XM_017413966.3 18874331 11 17487729 17488243 Kryptolebias marmoratus 37003 GAG|GTAAAACAAG...CGGCTTTTAATT/CGGCTTTTAATT...TTTAG|GGA 1 1 89.406
100497890 GT-AG 0 0.0001905803838916 73 rna-XM_017413966.3 18874331 12 17488353 17488425 Kryptolebias marmoratus 37003 AGA|GTAAGCTCAG...ACACCTTTGAGA/ACACCTTTGAGA...TCTAG|GTG 2 1 91.549
100497891 GT-AG 0 1.000000099473604e-05 67 rna-XM_017413966.3 18874331 13 17488603 17488669 Kryptolebias marmoratus 37003 GGG|GTGAGCACAG...GATGCTTTAACC/GATGCTTTAACC...TGCAG|CTG 2 1 95.028

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