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

✎ 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
197657995 GT-AG 0 1.000000099473604e-05 786 rna-XM_018125230.1 35103542 1 227986 228771 Theobroma cacao 3641 CAG|GTCATTTCCC...TGCTTCTTTTCT/TTTTTGTTTATG...TGCAG|GTC 0 1 4.139
197657996 GT-AG 0 0.0003510430277849 1440 rna-XM_018125230.1 35103542 2 225369 226808 Theobroma cacao 3641 GAG|GTAGGCTATG...GTCATTTTGATA/GTCATTTTGATA...TTCAG|AGG 1 1 36.617
197657997 GT-AG 0 4.962833919626293 93 rna-XM_018125230.1 35103542 3 225057 225149 Theobroma cacao 3641 ATG|GTATCATTTC...CTCCCTTTAACA/CTCCCTTTAACA...AATAG|GTT 1 1 42.66
197657998 GC-AG 0 1.000000099473604e-05 407 rna-XM_018125230.1 35103542 4 224423 224829 Theobroma cacao 3641 AAG|GCACTTCCTT...CTGGCCTCGATT/ATTTATATTACT...TGAAG|GTT 0 1 48.924
197657999 GT-AG 0 1.000000099473604e-05 265 rna-XM_018125230.1 35103542 5 224083 224347 Theobroma cacao 3641 CTT|GTGAGTATGC...AATTCTTTACCC/TTTTTTTTCATT...TATAG|ATT 0 1 50.993
197658000 GT-AG 0 0.0083543437287332 91 rna-XM_018125230.1 35103542 6 223920 224010 Theobroma cacao 3641 GAG|GTACCTTGTT...CACAGCTGAATT/AGCTGAATTATT...CTCAG|GTT 0 1 52.98
197658001 GT-AG 0 0.0003276266699124 139 rna-XM_018125230.1 35103542 7 223682 223820 Theobroma cacao 3641 CAG|GTATTTAGGA...TGTGCTTTATTT/TTTATTTTCATT...TGCAG|GAA 0 1 55.712
197658002 GT-AG 0 0.0003478270828709 91 rna-XM_018125230.1 35103542 8 223519 223609 Theobroma cacao 3641 CAG|GTATAATCTG...TTGTCTGTAATA/TTGTCTGTAATA...TGCAG|GAT 0 1 57.699
197658003 GT-AG 0 0.0912353853984105 361 rna-XM_018125230.1 35103542 9 223043 223403 Theobroma cacao 3641 TTG|GTACCATCTC...ATGGCTTTAATT/ATGGCTTTAATT...TTAAG|GCT 1 1 60.872
197658004 GT-AG 0 0.0001090653939187 190 rna-XM_018125230.1 35103542 10 222784 222973 Theobroma cacao 3641 AAG|GTATGTGCCT...ATAACTTTATCC/CATAACTTTATC...TTCAG|GAT 1 1 62.776
197658005 GT-AG 0 0.0002688572567554 168 rna-XM_018125230.1 35103542 11 222225 222392 Theobroma cacao 3641 AAG|GTGTGTTGTT...GGTGCCTTGACA/AAGTTTTTGATG...TACAG|TGA 2 1 73.565
197658006 GT-AG 0 1.000000099473604e-05 519 rna-XM_018125230.1 35103542 12 221585 222103 Theobroma cacao 3641 AAG|GTACGTGAAT...ATTGTTTTGAGA/ATTGTTTTGAGA...TGCAG|GAG 0 1 76.904

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