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)

13 rows where transcript_id = 35103465

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
197656880 GT-AG 0 1.000000099473604e-05 1218 rna-XM_007051705.2 35103465 1 34441882 34443099 Theobroma cacao 3641 CAG|GTAAGGGTTT...ATTTATTTAATA/ATTTATTTAATA...TGCAG|TCA 0 1 3.044
197656881 GT-AG 0 0.0133419919988621 140 rna-XM_007051705.2 35103465 2 34440419 34440558 Theobroma cacao 3641 AAG|GTATACTAAT...AAATACTTAGTG/ATTTTTGTGATT...AACAG|AAA 0 1 22.497
197656882 GC-AG 0 2.37442113061756e-05 574 rna-XM_007051705.2 35103465 3 34438489 34439062 Theobroma cacao 3641 CAG|GCATGATTTC...ATTTCCTTATTT/ATGTTACTGATT...AAAAG|GGT 0 1 42.435
197656883 GT-AG 0 1.000000099473604e-05 287 rna-XM_007051705.2 35103465 4 34438089 34438375 Theobroma cacao 3641 CAA|GTAAGTTGTG...CATTTCTTGTGG/TTATATGTCATT...AACAG|GTA 2 1 44.096
197656884 GT-AG 0 0.0003794224420643 123 rna-XM_007051705.2 35103465 5 34437878 34438000 Theobroma cacao 3641 CTT|GTAGGTTGCT...TGTATTTTATTT/GTGTATTTTATT...GGCAG|GTT 0 1 45.39
197656885 GT-AG 0 5.255419767957596e-05 184 rna-XM_007051705.2 35103465 6 34437607 34437790 Theobroma cacao 3641 CAG|GTAGTGTTTT...TTTACCTTATTG/TTTTACCTTATT...TGCAG|GTT 0 1 46.67
197656886 GT-AG 0 1.000000099473604e-05 82 rna-XM_007051705.2 35103465 7 34437432 34437513 Theobroma cacao 3641 AAG|GTTAGTTTTG...GTATCTTTGAAC/GTATCTTTGAAC...TGCAG|AGT 0 1 48.037
197656887 GT-AG 0 1.000000099473604e-05 83 rna-XM_007051705.2 35103465 8 34437265 34437347 Theobroma cacao 3641 CAA|GTAAGAACTA...GTTTTTTTAGTG/TTGGTTTTCATG...CATAG|GAG 0 1 49.272
197656888 GT-AG 0 1.4029453379966268e-05 336 rna-XM_007051705.2 35103465 9 34436725 34437060 Theobroma cacao 3641 CAG|GTCTGTTAAG...TAGTTATTGATG/TAGTTATTGATG...CACAG|AAT 0 1 52.272
197656889 GT-AG 0 0.0007513248556701 83 rna-XM_007051705.2 35103465 10 34436399 34436481 Theobroma cacao 3641 AAG|GTACGCTGTT...TTTCGCTTATCG/CTGTTTCTAATG...TGCAG|GTC 0 1 55.845
197656890 GT-AG 0 0.0008869529413215 86 rna-XM_007051705.2 35103465 11 34434756 34434841 Theobroma cacao 3641 CTG|GTATGTCTCT...ATGTTATTATTA/TATTTTCTCATG...GGCAG|CCA 0 1 78.738
197656891 GT-AG 0 0.000108701049248 679 rna-XM_007051705.2 35103465 12 34433531 34434209 Theobroma cacao 3641 AAG|GTATAGTTGA...CTATTTGTGAAT/TAGTGATTGACT...TGCAG|TGC 0 1 86.767
197656892 GT-AG 0 0.0018378807947141 375 rna-XM_007051705.2 35103465 13 34432904 34433278 Theobroma cacao 3641 GAG|GTATAATTTC...ATGTCCTGATCT/TGTCTACTTACT...CACAG|GTC 0 1 90.472

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