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

✎ 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
67904906 GT-AG 0 4.802048574364378e-05 107 rna-XM_022862185.1 12758603 1 2584376 2584482 Durio zibethinus 66656 GAG|GTTTTTCTTT...ATTTGTTTAAAA/AGGTTATTTATT...AACAG|GAC 0 1 1.392
67904907 GT-AG 0 0.2334439149348582 213 rna-XM_022862185.1 12758603 2 2584057 2584269 Durio zibethinus 66656 CTG|GTATCATCCT...CACGTTTTAAAA/TGGAAATTCACG...CACAG|CAG 1 1 5.175
67904908 GT-AG 0 1.3768335979621477e-05 167 rna-XM_022862185.1 12758603 3 2583333 2583499 Durio zibethinus 66656 AAG|GTGGATTTCG...CTGTCTTTAACT/CTCTTTCTGATT...GTTAG|AAA 0 1 25.054
67904909 GT-AG 0 1.000000099473604e-05 99 rna-XM_022862185.1 12758603 4 2583138 2583236 Durio zibethinus 66656 CAG|GTGAGCGCTA...TTAATTTTGAAA/TTAATTTTGAAA...TTCAG|ATG 0 1 28.48
67904910 GT-AG 0 0.0003384335484513 558 rna-XM_022862185.1 12758603 5 2581686 2582243 Durio zibethinus 66656 CTG|GTAATCTCAT...TTCTTTTTATAT/ATTCTTTTTATA...ATCAG|TTG 0 1 60.385
67904911 GT-AG 0 1.000000099473604e-05 132 rna-XM_022862185.1 12758603 6 2581429 2581560 Durio zibethinus 66656 AAG|GTTAAAAAAA...AACCTTTTATTA/TCATTTTTCATC...TACAG|TAA 2 1 64.847
67904912 GT-AG 0 0.0004013064521427 112 rna-XM_022862185.1 12758603 7 2581229 2581340 Durio zibethinus 66656 CGG|GTATGATACT...ATCCTTTTGACA/ATCCTTTTGACA...AATAG|GAA 0 1 67.987
67904913 GT-AG 0 1.000000099473604e-05 120 rna-XM_022862185.1 12758603 8 2580973 2581092 Durio zibethinus 66656 TTA|GTTAATATTC...AAATTCTTGTCC/ATCTTTCTCACA...TGCAG|TGG 1 1 72.841
67904914 GT-AG 0 1.000000099473604e-05 71 rna-XM_022862185.1 12758603 9 2580846 2580916 Durio zibethinus 66656 CTG|GTGAGATGCT...TGTATCTTAATC/CATTTCCTCATG...TCTAG|TGT 0 1 74.839
67904915 GT-AG 0 1.000000099473604e-05 73 rna-XM_022862185.1 12758603 10 2580716 2580788 Durio zibethinus 66656 CAG|GTCAGCCTCA...TTTTCTTTATAT/ATCTTTCTAATT...TGTAG|CGT 0 1 76.874
67904916 GT-AG 0 1.000000099473604e-05 159 rna-XM_022862185.1 12758603 11 2580416 2580574 Durio zibethinus 66656 GAA|GTGGGTGCTG...TATTCCTTAACA/GTATCATTTATT...TGCAG|CCT 0 1 81.906
67904917 GT-AG 0 0.001665975955007 82 rna-XM_022862185.1 12758603 12 2580268 2580349 Durio zibethinus 66656 AAG|GTATTATCGA...CGTTCTTTAATC/TCTTTAATCACC...TGCAG|GTA 0 1 84.261
67904918 GT-AG 0 0.0001163174383969 607 rna-XM_022862185.1 12758603 13 2579399 2580005 Durio zibethinus 66656 CTG|GTAAGCTTGG...TTGTTTTTCACT/TTGTTTTTCACT...AACAG|GGG 1 1 93.612

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