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

✎ 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
57021885 GT-AG 0 0.0002986693108475 202 rna-XM_025115428.1 10378383 2 5923398 5923599 Cynara cardunculus 4265 CTG|GTTACATTCG...TTTGCTTTGATT/CTTTGATTTATC...CGCAG|GTT 2 1 15.578
57021886 GT-AG 0 0.0011768363595889 1556 rna-XM_025115428.1 10378383 3 5921106 5922661 Cynara cardunculus 4265 CAT|GTAAGTTTGA...ATACTCTTAACT/CGGTTTCTGACA...TGCAG|CGC 0 1 25.039
57021887 GT-AG 0 1.000000099473604e-05 1284 rna-XM_025115428.1 10378383 4 5919332 5920615 Cynara cardunculus 4265 AAG|GTTTGACTTA...TCTTTCTTTTCT/CTGGTAATTATT...ATCAG|ATG 1 1 31.337
57021888 GT-AG 0 1.5467268049515763e-05 121 rna-XM_025115428.1 10378383 5 5919059 5919179 Cynara cardunculus 4265 CAG|GTATGTAGGT...ATAACATTAGAG/CATATGCTCAGT...CTTAG|GTA 0 1 33.29
57021889 GT-AG 0 0.0002363318832296 82 rna-XM_025115428.1 10378383 6 5915638 5915719 Cynara cardunculus 4265 GAG|GTACTATGTT...TGGCTCTTAATA/ATGGCTCTTAAT...TTCAG|GCA 0 1 76.208
57021890 GT-AG 0 1.000000099473604e-05 827 rna-XM_025115428.1 10378383 7 5914598 5915424 Cynara cardunculus 4265 GAG|GTTAGTGTGC...GTGTTTTTATTG/TGTGTTTTTATT...GTCAG|ATA 0 1 78.946
57021891 GT-AG 0 0.0001429028031422 141 rna-XM_025115428.1 10378383 8 5914256 5914396 Cynara cardunculus 4265 AAG|GTATGAAGTG...GTCTTCTTAACA/CTGTTACTAATG...TGCAG|ATG 0 1 81.53
57021892 GT-AG 0 1.000000099473604e-05 1582 rna-XM_025115428.1 10378383 9 5912470 5914051 Cynara cardunculus 4265 CAG|GTAATTATTC...GGTACATTATTT/TCGTCACTCACT...TGCAG|ATT 0 1 84.152
57021893 GT-AG 0 9.046317151016252e-05 1526 rna-XM_025115428.1 10378383 10 5910785 5912310 Cynara cardunculus 4265 GAG|GTAACAACTT...AATTTCTTACAT/TAATTTCTTACA...TCTAG|GTA 0 1 86.195
57021894 GT-AG 0 0.0019025455786743 515 rna-XM_025115428.1 10378383 11 5909922 5910436 Cynara cardunculus 4265 ATG|GTACTCTATT...TCATATTTATCT/ATCATATTTATC...TCCAG|GAC 0 1 90.668
57021895 GT-AG 0 0.0059407752052225 456 rna-XM_025115428.1 10378383 12 5909030 5909485 Cynara cardunculus 4265 CAG|GTATGCTATA...TCAACCTTGTTT/ATGGTTTTCAAC...CTCAG|GAT 1 1 96.272
57021896 GT-AG 0 0.0005623636171139 544 rna-XM_025115428.1 10378383 13 5908395 5908938 Cynara cardunculus 4265 ATG|GTAATCTCTC...TTTGCCTTTGTT/CTTTTTGTGATA...ACAAG|GTC 2 1 97.442
57033644 GT-AG 0 0.0014048609358814 110 rna-XM_025115428.1 10378383 1 5924732 5924841 Cynara cardunculus 4265 AAG|GTAACTTGGA...GTCACTTGAACT/TTTTATGTCACT...TGCAG|CTA   0 1.054

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