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

✎ 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
347251 GT-AG 0 1.994158436364713e-05 1411 rna-XM_022223777.1 76515 1 2714540 2715950 Acanthaster planci 133434 ACA|GTAAGTTGTT...TCTATTGTATTT/AACGTGTTCATT...GGCAG|TAC 0 1 4.608
347252 GT-AG 0 0.0001094238208239 2042 rna-XM_022223777.1 76515 2 2716147 2718188 Acanthaster planci 133434 CAA|GTATGAGACA...TCCGTCTTGATT/TCCGTCTTGATT...TCTAG|CCA 1 1 15.757
347253 GT-AG 0 1.000000099473604e-05 320 rna-XM_022223777.1 76515 3 2718312 2718631 Acanthaster planci 133434 GGG|GTGAGTGAGT...CAAGTTTAGATT/TTTAGATTCAAA...TCCAG|GTA 1 1 22.753
347254 GT-AG 0 1.000000099473604e-05 722 rna-XM_022223777.1 76515 4 2718802 2719523 Acanthaster planci 133434 GAG|GTAAGCCTGT...CCATCTTTGGCT/AAATGATTAATT...TGTAG|GTC 0 1 32.423
347255 GT-AG 0 1.000000099473604e-05 307 rna-XM_022223777.1 76515 5 2719602 2719908 Acanthaster planci 133434 AGG|GTGAGTGCTG...GTTAATGTAACA/GTTAATGTAACA...CACAG|ATT 0 1 36.86
347256 GT-AG 0 1.000000099473604e-05 414 rna-XM_022223777.1 76515 6 2720041 2720454 Acanthaster planci 133434 ATG|GTATGACACA...AAGGTCTTGCTT/TCTTGCTTCACC...CCCAG|GAG 0 1 44.369
347257 GT-AG 0 1.000000099473604e-05 444 rna-XM_022223777.1 76515 7 2720622 2721065 Acanthaster planci 133434 AGA|GTGAGTGACG...ACTTGTTTGATT/ACTTGTTTGATT...TGCAG|TCG 2 1 53.868
347258 GT-AG 0 1.3318160105453475e-05 694 rna-XM_022223777.1 76515 8 2721161 2721854 Acanthaster planci 133434 GAG|GTAGGCAGTC...AACTTTTTCACT/AACTTTTTCACT...ATCAG|GCA 1 1 59.272
347259 GT-AG 0 1.000000099473604e-05 438 rna-XM_022223777.1 76515 9 2721986 2722423 Acanthaster planci 133434 ATG|GTAAGTCTGT...TTATGTTTCCCC/GTGAAACTCAAA...GACAG|GTG 0 1 66.724
347260 GT-AG 0 1.000000099473604e-05 443 rna-XM_022223777.1 76515 10 2722633 2723075 Acanthaster planci 133434 AAT|GTGAGTATGA...GTAACTTTGCCC/TTTTGTGTAACT...CACAG|GTA 2 1 78.612
347261 GT-AG 0 1.000000099473604e-05 437 rna-XM_022223777.1 76515 11 2723307 2723743 Acanthaster planci 133434 AAA|GTGAGTCCAG...TATTTTTTGTTC/TTTTTGTTCATC...CACAG|AAT 2 1 91.752

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