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)

14 rows where transcript_id = 29376523

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163593596 GT-AG 0 4.446096108521022e-05 146 rna-XM_016794634.1 29376523 1 11727878 11728023 Prunus mume 102107 TCC|GTAAGTCCCG...TTGTATTTAATT/TTGTATTTAATT...AACAG|GAG 0 1 4.746
163593597 GT-AG 0 1.000000099473604e-05 225 rna-XM_016794634.1 29376523 2 11726996 11727220 Prunus mume 102107 CAG|GTTAGATTAC...CACTCATTGACA/TATTTATTTATT...TTTAG|GTT 0 1 22.981
163593598 GT-AG 0 1.000000099473604e-05 108 rna-XM_016794634.1 29376523 3 11726681 11726788 Prunus mume 102107 AGG|GTAATGCTGT...TTCTTCGTATCA/TCAGTTCTCATG...CTCAG|GAA 0 1 28.726
163593599 GT-AG 0 1.000000099473604e-05 884 rna-XM_016794634.1 29376523 4 11725485 11726368 Prunus mume 102107 CAG|GTCATCCACT...TTGTTTTTATTT/ATTGTTTTTATT...TGCAG|GTA 0 1 37.386
163593600 GT-AG 0 0.0006462451144168 229 rna-XM_016794634.1 29376523 5 11725128 11725356 Prunus mume 102107 TGG|GTAATCTCTC...ATTTCTCTAATT/ATTTCTCTAATT...CTCAG|GGT 2 1 40.938
163593601 GT-AG 0 1.000000099473604e-05 81 rna-XM_016794634.1 29376523 6 11724736 11724816 Prunus mume 102107 AAG|GTGTGTTTAC...TATGTCTGATGT/CTATGTCTGATG...TGCAG|ATT 1 1 49.57
163593602 GT-AG 1 99.48202441361803 230 rna-XM_016794634.1 29376523 7 11723737 11723966 Prunus mume 102107 TCA|GTATCCTTAT...TTGTCCTTAAAA/GTCTGTTTCATG...GCTAG|ATA 2 1 70.913
163593603 GT-AG 0 1.000000099473604e-05 97 rna-XM_016794634.1 29376523 8 11723498 11723594 Prunus mume 102107 CAT|GTAATAATCA...TTTTTCTTGTTC/TACCATCTGATT...TATAG|AAA 0 1 74.854
163593604 GT-AG 0 0.0007969677998966 274 rna-XM_016794634.1 29376523 9 11723064 11723337 Prunus mume 102107 CTG|GTACATTATT...AATATTTTACCT/TAATATTTTACC...TGCAG|GAG 1 1 79.295
163593605 GT-AG 0 9.93064171521102e-05 1656 rna-XM_016794634.1 29376523 10 11721244 11722899 Prunus mume 102107 AAG|GTATGGATTT...TTTACTTTATAT/CTAAAATTTACT...TGCAG|GAT 0 1 83.847
163593606 GT-AG 0 0.0081104008630112 1015 rna-XM_016794634.1 29376523 11 11720143 11721157 Prunus mume 102107 GAG|GTACACTGAG...GTCTTTTTGACT/GTCTTTTTGACT...CATAG|GCA 2 1 86.234
163593607 GT-AG 0 1.000000099473604e-05 865 rna-XM_016794634.1 29376523 12 11719178 11720042 Prunus mume 102107 AAG|GTTTGAAGCC...GTTTTCTTGATC/GTTTTCTTGATC...TGTAG|GTC 0 1 89.009
163593608 GT-AG 0 5.6218963282233225e-05 329 rna-XM_016794634.1 29376523 13 11718787 11719115 Prunus mume 102107 CAT|GTAAGTTCAG...TTTCTGTTAACC/ATGAATCTAACC...TGCAG|ATG 2 1 90.73
163593609 GT-AG 0 1.000000099473604e-05 1332 rna-XM_016794634.1 29376523 14 11717295 11718626 Prunus mume 102107 CAG|GTGATGCTCA...CTGTCGATAACA/CTGTCGATAACA...TGCAG|GTG 0 1 95.171

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