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

✎ 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
197657362 GT-AG 0 0.0007986090106031 346 rna-XM_007047013.2 35103492 2 2015466 2015811 Theobroma cacao 3641 AAG|GTAGCATTTC...TTCATGTTGATA/TTTATTTTCATG...TATAG|TGG 0 1 13.065
197657363 GT-AG 0 0.0272134675615058 107 rna-XM_007047013.2 35103492 3 2015056 2015162 Theobroma cacao 3641 GAG|GTATTGTTTT...AGTTCCTTAGCT/CTATTCCTAATT...TGTAG|GCT 0 1 19.46
197657364 GT-AG 0 0.000106454611908 528 rna-XM_007047013.2 35103492 4 2014417 2014944 Theobroma cacao 3641 AGT|GTAAATCCTT...CCCTCTTTACAT/CCCCTCTTTACA...TGCAG|ATG 0 1 21.802
197657365 GT-AG 0 0.022271953177523 339 rna-XM_007047013.2 35103492 5 2013967 2014305 Theobroma cacao 3641 GAG|GTATGTTTTT...TTTTCTTTGCCT/GTCAATTTGATA...TTTAG|GAA 0 1 24.145
197657366 GT-AG 0 0.2659410621989221 353 rna-XM_007047013.2 35103492 6 2010737 2011089 Theobroma cacao 3641 GAG|GTACCTTTGT...TTTTCCTTCTAT/CTTCTATTTATG...TTCAG|AGT 0 1 84.867
197657367 GT-AG 0 0.0007304109281195 423 rna-XM_007047013.2 35103492 7 2010152 2010574 Theobroma cacao 3641 GAG|GTACTTTAAT...CTGTCTTTGATT/CTGTCTTTGATT...TGCAG|GAG 0 1 88.286
197657368 GT-AG 0 1.000000099473604e-05 70 rna-XM_007047013.2 35103492 8 2009965 2010034 Theobroma cacao 3641 AAG|GTAATGCTTT...TCTTCTTTGATG/TCTTCTTTGATG...TTCAG|GGC 0 1 90.756
197657369 GT-AG 0 0.0001452118239413 88 rna-XM_007047013.2 35103492 9 2009773 2009860 Theobroma cacao 3641 CAG|GTTCCACTTC...TTATGCTTAATG/GTTGTTTTTATG...TTCAG|GTA 2 1 92.951
197657370 GT-AG 0 1.000000099473604e-05 302 rna-XM_007047013.2 35103492 10 2009333 2009634 Theobroma cacao 3641 TAG|GTGAGGATAC...CTTCTTTTAATT/CTTCTTTTAATT...CCCAG|TTG 2 1 95.863
197657371 GT-AG 0 6.284134137457949e-05 456 rna-XM_007047013.2 35103492 11 2008789 2009244 Theobroma cacao 3641 GAT|GTAAGCACTT...CATGTGTTGAAT/CATGTGTTGAAT...TGCAG|ATA 0 1 97.721
197671370 GT-AG 0 1.000000099473604e-05 1512 rna-XM_007047013.2 35103492 1 2016368 2017879 Theobroma cacao 3641 AAG|GTAAAATACA...ATCATCTTACTC/TTGAGTTTTATT...GACAG|GGA   0 2.807

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