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

✎ 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
347154 GT-AG 0 3.672353154598151e-05 10270 rna-XM_022246919.1 76505 1 1622084 1632353 Acanthaster planci 133434 CAG|GTACGTATTT...TGTTTTTTTTCC/TTTTTCCACATT...TTCAG|ATA 1 1 9.915
347155 GT-AG 0 0.0001296661946478 1017 rna-XM_022246919.1 76505 2 1620884 1621900 Acanthaster planci 133434 AAT|GTAAGCTCCT...AATGTTTTTTTT/AGAGTATTTACA...TTTAG|CTA 1 1 19.033
347156 GT-AG 0 1.000000099473604e-05 356 rna-XM_022246919.1 76505 3 1620410 1620765 Acanthaster planci 133434 CAA|GTGAGTACTC...ACAGTCCTGACA/ATTTTTTTTAAC...TGTAG|AAC 2 1 24.913
347157 GT-AG 0 5.074104827457273e-05 327 rna-XM_022246919.1 76505 4 1619981 1620307 Acanthaster planci 133434 GAG|GTAGGCTGTC...TGATTGTTACTG/ATGATTGTTACT...TTCAG|TGA 2 1 29.995
347158 GT-AG 0 1.000000099473604e-05 154 rna-XM_022246919.1 76505 5 1619632 1619785 Acanthaster planci 133434 TAG|GTAAGCATGA...CTTGTTTTTTTC/TGATTGCTGATT...CTCAG|TGG 2 1 39.711
347159 GT-AG 0 0.0001396756101251 683 rna-XM_022246919.1 76505 6 1618801 1619483 Acanthaster planci 133434 GAG|GTATTACCAG...TTATCCTTATAA/ATTATCCTTATA...TTCAG|CTG 0 1 47.085
347160 GT-AG 0 1.000000099473604e-05 202 rna-XM_022246919.1 76505 7 1618497 1618698 Acanthaster planci 133434 CAG|GTAATTTGAT...TCCTGTTTATCT/CTCCTGTTTATC...TGTAG|ATT 0 1 52.167
347161 GT-AG 0 5.3090461313392754e-05 806 rna-XM_022246919.1 76505 8 1617574 1618379 Acanthaster planci 133434 CAG|GTAAACCTGT...GTCACTTTGAAC/ATGAGTCTGATC...ATCAG|GAT 0 1 57.997
347162 GT-AG 0 0.0682826358773142 241 rna-XM_022246919.1 76505 9 1617165 1617405 Acanthaster planci 133434 CAG|GTATCTACAT...TTTTTCTGATCT/TTTTTTCTGATC...TGTAG|TCC 0 1 66.368
347163 GT-AG 0 1.000000099473604e-05 812 rna-XM_022246919.1 76505 10 1616255 1617066 Acanthaster planci 133434 AAG|GTCAGTGTAG...TTTTCTGTGACC/TTTTCTGTGACC...AACAG|ACT 2 1 71.251
347164 GT-AG 0 1.7336200671742086e-05 591 rna-XM_022246919.1 76505 11 1615577 1616167 Acanthaster planci 133434 GCG|GTAAGCCCTC...CGCTTTTGGATT/GAGTATGTCACG...TTCAG|TGC 2 1 75.585
347165 GT-AG 0 0.0003842004504005 433 rna-XM_022246919.1 76505 12 1614919 1615351 Acanthaster planci 133434 CGA|GTAAGTCTTG...TGCTTCTTATTT/CTGCTTCTTATT...TGAAG|ATC 2 1 86.796
347166 GT-AG 0 1.000000099473604e-05 374 rna-XM_022246919.1 76505 13 1614418 1614791 Acanthaster planci 133434 AAG|GTAGGTTTAG...ATCCCCTCCTCC/CTCCTCCCCACC...AACAG|CAT 0 1 93.124

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