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)

11 rows where transcript_id = 29350736

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
163479869 GT-AG 0 1.4640692836621e-05 204 rna-XM_034345855.1 29350736 1 11964590 11964793 Prunus dulcis 3755 CAG|GTCTGTGTTT...TTCTTCTTGTTT/TTTTGTTGGATG...TTCAG|GGT 2 1 6.866
163479870 GT-AG 0 1.000000099473604e-05 123 rna-XM_034345855.1 29350736 2 11964905 11965027 Prunus dulcis 3755 AAA|GTGAGTTTCT...CAACTTTTAACC/CAACTTTTAACC...TACAG|GGT 2 1 9.638
163479871 GT-AG 0 0.4216638190786073 260 rna-XM_034345855.1 29350736 3 11965376 11965635 Prunus dulcis 3755 CAT|GTATGCTGCT...TTTTGCTTGACA/TTTTGCTTGACA...CTCAG|GCC 2 1 18.327
163479872 GT-AG 0 1.000000099473604e-05 79 rna-XM_034345855.1 29350736 4 11965938 11966016 Prunus dulcis 3755 CTG|GTAAAGTAGA...CTTCTTTTATCA/ACTTCTTTTATC...CTCAG|GTT 1 1 25.868
163479873 AA-TC 0 85.67449427266676 70 rna-XM_034345855.1 29350736 5 11966114 11966183 Prunus dulcis 3755 TAA|AAATTATTAC...TACTCTTTGTCT/AGTACTGTCATT...ATTTC|CAT 2 1 28.29
163479874 GT-AG 0 1.6369488812859847e-05 263 rna-XM_034345855.1 29350736 6 11966594 11966856 Prunus dulcis 3755 GCT|GTAAGTAAAA...TCTCTCTAAACT/TTCTCTCTAAAC...TTCAG|CAG 1 1 38.527
163479875 GT-AG 0 0.059889913235549 458 rna-XM_034345855.1 29350736 7 11967065 11967522 Prunus dulcis 3755 AAG|GTATACTTAG...TAAATCTAAACA/TGTAAGCTCATG...GGAAG|TAT 2 1 43.72
163479876 GT-AG 0 1.000000099473604e-05 147 rna-XM_034345855.1 29350736 8 11967638 11967784 Prunus dulcis 3755 CAA|GTAATGAATT...TCATTCTAATTA/ATCATTCTAATT...TGTAG|GAA 0 1 46.592
163479877 GT-AG 0 0.0004267596486899 451 rna-XM_034345855.1 29350736 9 11967947 11968397 Prunus dulcis 3755 ATG|GTACATGTTC...TTGGTTTTGACT/TTGGTTTTGACT...TCCAG|GTT 0 1 50.637
163479878 GT-AG 0 1.000000099473604e-05 135 rna-XM_034345855.1 29350736 10 11969056 11969190 Prunus dulcis 3755 CTG|GTAAGTCTAA...ATGTTCTTGTTA/ATTCGGTTCATA...TTTAG|GGC 1 1 67.066
163479879 GT-AG 0 0.0010259304904883 186 rna-XM_034345855.1 29350736 11 11969401 11969586 Prunus dulcis 3755 CAG|GTTTTTTTTC...ATTTCTTCAATA/TATTTCTTCAAT...CACAG|ATG 1 1 72.31

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