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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
10060308 GT-AG 0 6.24341205403067e-05 164 AATE006920-RA 1767272 3 15431405 15431568 Anopheles atroparvus 41427 TGG|GTAAGCACGT...TTTATTTTATTT/ATTTATTTTATT...CTCAG|ATA 0 1 13.936
10060309 GT-AG 0 1.000000099473604e-05 158 AATE006920-RA 1767272 4 15432685 15432842 Anopheles atroparvus 41427 GAG|GTAGGTAACA...CATTTCTTCTAC/AGAAGATTCATA...TTCAG|GGT 0 1 40.705
10060310 GT-AG 0 1.000000099473604e-05 518 AATE006920-RA 1767272 5 15433167 15433684 Anopheles atroparvus 41427 CAG|GTATGAAGGC...ACCGTTTTGTTT/CCTGTGGTGACC...TATAG|TTC 0 1 48.477
10060311 GT-AG 0 1.000000099473604e-05 3763 AATE006920-RA 1767272 6 15433833 15437595 Anopheles atroparvus 41427 TAG|GTCGGTTGAT...TGTTTCTTTGCG/GAACGCATCATT...TACAG|ATA 1 1 52.027
10060312 GT-AG 0 1.000000099473604e-05 316 AATE006920-RA 1767272 7 15437761 15438076 Anopheles atroparvus 41427 ACA|GTAGGTGGTG...TTGGCTTTTTTT/AGAATGCTTATG...TTTAG|AGT 1 1 55.985
10060313 GT-AG 0 0.0002243531613103 85 AATE006920-RA 1767272 8 15438245 15438329 Anopheles atroparvus 41427 ATT|GTACGTAGCC...CTGCCCTTGGCA/ACTGTCTTCATC...TGCAG|CCG 1 1 60.014
10060314 GT-AG 0 1.000000099473604e-05 142 AATE006920-RA 1767272 9 15438570 15438711 Anopheles atroparvus 41427 ACG|GTAAGAAGCT...TCTTTCTTTTCT/TCTGCTTTCATA...CGCAG|TGC 1 1 65.771
10060315 GT-AG 0 1.000000099473604e-05 1370 AATE006920-RA 1767272 10 15438886 15440255 Anopheles atroparvus 41427 CTG|GTGAGTAGCG...TTCGCTGTGGCT/GTTGGGTTAAAA...CGCAG|AGC 1 1 69.945
10060316 GT-AG 0 0.0001010060587424 83 AATE006920-RA 1767272 11 15440471 15440553 Anopheles atroparvus 41427 CAG|GTTTGTTAGC...TTCTTTTTAATC/ATATGTCTCATT...CTAAG|GTT 0 1 75.102
10063605 GT-AG 0 1.000000099473604e-05 74 AATE006920-RA 1767272 1 15430793 15430866 Anopheles atroparvus 41427 ATG|GTTGGTTTTC...CTCCTCTTTCCT/ATTGAATTGACA...ATAAG|CAT   0 5.109
10063606 GT-AG 0 1.589374515921966e-05 76 AATE006920-RA 1767272 2 15431106 15431181 Anopheles atroparvus 41427 TCG|GTAAGCCATC...GTCGTTTTATAT/CTTTCTCTTACG...TCTAG|TAC   0 10.842

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