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)

12 rows where transcript_id = 29350738

✎ 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
163479895 GT-AG 0 1.000000099473604e-05 453 rna-XM_034342907.1 29350738 2 17296704 17297156 Prunus dulcis 3755 GAG|GTGTAGATTG...TAAACCTTCATC/TAAACCTTCATC...GGAAG|TGG 2 1 3.985
163479896 GT-AG 0 1.000000099473604e-05 80 rna-XM_034342907.1 29350738 3 17297221 17297300 Prunus dulcis 3755 CAG|GTGCGTGCAG...ATTCCCTGAATC/CTGAATCTGATT...TCCAG|GAT 0 1 5.348
163479897 GT-AG 0 1.000000099473604e-05 95 rna-XM_034342907.1 29350738 4 17297376 17297470 Prunus dulcis 3755 GAG|GTGCATGACT...GTTCTCTTAACT/TTGCTTTTCATT...TCAAG|GAG 0 1 6.947
163479898 GT-AG 0 1.6610414194247556e-05 106 rna-XM_034342907.1 29350738 5 17297521 17297626 Prunus dulcis 3755 AGA|GTACGGCTAT...TGTTTCCTATCC/TTTGTATTTACA...ACCAG|GAA 2 1 8.012
163479899 GT-AG 0 0.0001478591751221 105 rna-XM_034342907.1 29350738 6 17297688 17297792 Prunus dulcis 3755 AAG|GTTTGTATCC...TTCTTCTTAACA/TAATTTTTAATT...TGTAG|GTT 0 1 9.312
163479900 GT-AG 0 0.006814961727319 462 rna-XM_034342907.1 29350738 7 17298189 17298650 Prunus dulcis 3755 ATG|GTATGTTTCG...TTATTTATGACT/GTGTTACTGACT...GACAG|GAC 0 1 17.75
163479901 GT-AG 0 1.000000099473604e-05 99 rna-XM_034342907.1 29350738 8 17298897 17298995 Prunus dulcis 3755 CAG|GTGGGTTTAT...ATATTCTTGATC/ATATTCTTGATC...TGCAG|TTT 0 1 22.992
163479902 GT-AG 0 1.928330399723672e-05 1305 rna-XM_034342907.1 29350738 9 17299227 17300531 Prunus dulcis 3755 CAG|GTTCTTTACG...TTATCCTTGTCC/CTTGTACTTAAA...TACAG|AAT 0 1 27.914
163479903 GT-AG 0 1.000000099473604e-05 86 rna-XM_034342907.1 29350738 10 17300646 17300731 Prunus dulcis 3755 GAG|GTGAAGCTCC...AGGTTCTTGAAC/GTTGTACTCATT...GGCAG|GAA 0 1 30.343
163479904 GT-AG 0 1.000000099473604e-05 359 rna-XM_034342907.1 29350738 15 17301955 17302313 Prunus dulcis 3755 AAG|GTGGGTCCAA...TACATCTGGACT/TAGTATATGATC...CCCAG|GTA 0 1 56.233
163500812 GT-AG 0 0.0001268408134769 199 rna-XM_034342907.1 29350738 1 17296431 17296629 Prunus dulcis 3755 TTG|GTAATTTCGT...TGTTTTTTGATT/TGTTTTTTGATT...TTCAG|GTT   0 2.791
163500813 GT-AG 0 1.000000099473604e-05 343 rna-XM_034342907.1 29350738 16 17303967 17304309 Prunus dulcis 3755 TAG|GTAATCCGCT...TTATTTTTCATC/TTATTTTTCATC...CACAG|GTT   0 91.455

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