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

✎ 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
88331010 GT-AG 0 1.000000099473604e-05 15029 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 1 211019 226047 Grallaria varia 117165 CGA|GTGAGTGGGG...CTGTCCTTTCCC/GGTAGGCTCAGC...TGCAG|GAC 2 1 6.751
88331011 GT-AG 0 1.000000099473604e-05 1525 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 2 209283 210807 Grallaria varia 117165 AAG|GTGAGGGCCT...GGCACTTTGCCA/CACTTTGCCACT...CCCAG|CTG 0 1 24.557
88331012 GT-AG 0 1.000000099473604e-05 2871 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 3 206265 209135 Grallaria varia 117165 ATG|GTGAGTGCAA...TGAAGCTTGACT/TGAAGCTTGACT...CTTAG|GAT 0 1 36.962
88331013 GT-AG 0 1.000000099473604e-05 483 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 4 205704 206186 Grallaria varia 117165 GCG|GTGAGTGTGT...GCTTTCTGAATT/TTCTATTTGATT...TTTAG|GTA 0 1 43.544
88331014 GT-AG 0 1.000000099473604e-05 3584 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 5 202068 205651 Grallaria varia 117165 GAG|GTGAGATAAA...CCCACTTTATCT/TTATCTCTTAAG...TCCAG|ATG 1 1 47.932
88331015 GT-AG 0 2.1407355508004945e-05 1918 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 6 200025 201942 Grallaria varia 117165 TCT|GTAAGTACAG...CCCTCCTTTTTT/CTTGTGCCAATC...TACAG|CCA 0 1 58.481
88331016 GT-AG 0 1.000000099473604e-05 443 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 7 199374 199816 Grallaria varia 117165 GCT|GTGAGTTCAG...TGTTTTCTACTT/GTGTTTTCTACT...CTCAG|CCT 1 1 76.034
88331017 GT-AG 0 1.000000099473604e-05 1158 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 8 198151 199308 Grallaria varia 117165 GAG|GTAATTTAGA...ATCTATTTATTT/AATCTATTTATT...TATAG|CCA 0 1 81.519
88331018 GT-AG 0 1.000000099473604e-05 812 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 9 197277 198088 Grallaria varia 117165 ATG|GTGAGTATTT...TAACCCTTTGTG/TTTATTTTCAAA...CCCAG|CTT 2 1 86.751
88331019 GT-AG 0 1.000000099473604e-05 932 rna-gnl|WGS:VWZG|GRAVAR_R01688_mrna 16613763 10 196299 197230 Grallaria varia 117165 ATG|GTGAGTAAAT...TGCTCCTGAGTG/TTGCTCCTGAGT...CTCAG|ATC 0 1 90.633

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