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

✎ 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
196000844 GT-AG 0 0.0001654762875794 94 rna-XM_043842564.1 34796223 1 17283976 17284069 Telopea speciosissima 54955 GAA|GTAGGCCTAC...TTTGTTTTCACT/TTTGTTTTCACT...TACAG|GTA 2 1 2.628
196000845 GT-AG 0 5.9127861784518114e-05 102 rna-XM_043842564.1 34796223 2 17283807 17283908 Telopea speciosissima 54955 GAG|GTATGTCAAA...TTTCACTTATAT/GGTCTTTTCACT...TATAG|ATG 0 1 4.425
196000846 GT-AG 0 1.000000099473604e-05 95 rna-XM_043842564.1 34796223 3 17283646 17283740 Telopea speciosissima 54955 AAG|GTCAGAATTA...GTTCCCTGAATT/GGTTCCCTGAAT...TGTAG|GGC 0 1 6.195
196000847 GT-AG 0 1.000000099473604e-05 106 rna-XM_043842564.1 34796223 4 17283493 17283598 Telopea speciosissima 54955 CAT|GTAAGTCCAG...TAATTGTTACCA/TGTATTCTGACA...TTCAG|AGC 2 1 7.455
196000848 GT-AG 0 2.597334520391036e-05 84 rna-XM_043842564.1 34796223 5 17283363 17283446 Telopea speciosissima 54955 GAG|GTACAGCCAC...TGTTTCTTGATA/TGTTTCTTGATA...CACAG|AAA 0 1 8.689
196000849 GT-AG 0 1.2737431488825508e-05 81 rna-XM_043842564.1 34796223 6 17283201 17283281 Telopea speciosissima 54955 AAG|GTCTGTATGG...TTTTCTTCAGCA/TTTTCTCTCACC...TGCAG|TGT 0 1 10.861
196000850 GT-AG 0 1.000000099473604e-05 98 rna-XM_043842564.1 34796223 7 17283060 17283157 Telopea speciosissima 54955 TTG|GTTAGTGCAT...TTGCCTTTGTCT/CTTTGTCTCATA...TTCAG|GGG 1 1 12.014
196000851 GT-AG 0 0.0030365403258025 549 rna-XM_043842564.1 34796223 8 17282461 17283009 Telopea speciosissima 54955 TCT|GTACGTTCAT...GCAGTTTTACTG/AGCAGTTTTACT...ATCAG|GTT 0 1 13.355
196000852 GT-AG 0 1.000000099473604e-05 83 rna-XM_043842564.1 34796223 9 17282296 17282378 Telopea speciosissima 54955 TAG|GTATGAGCAT...TTGGTTCTAATG/TTGGTTCTAATG...AACAG|GGT 1 1 15.554
196000853 GT-AG 0 1.000000099473604e-05 6500 rna-XM_043842564.1 34796223 10 17275746 17282245 Telopea speciosissima 54955 TTT|GTAAGATCTG...GAACATTTAATC/CATTTAATCATA...CGCAG|GAT 0 1 16.895
196000854 GT-AG 0 4.025262119632515e-05 241 rna-XM_043842564.1 34796223 11 17275431 17275671 Telopea speciosissima 54955 ATT|GTAAGTCTGA...AAATCATTATCA/TAAATTGTCATT...CTCAG|GAA 2 1 18.879
196000855 GT-AG 0 1.000000099473604e-05 85 rna-XM_043842564.1 34796223 12 17275294 17275378 Telopea speciosissima 54955 AGT|GTAAGGCTTT...TCATCTTTGAGA/CTCAAATTCATC...ATCAG|GCA 0 1 20.274
196000856 GT-AG 0 1.000000099473604e-05 96 rna-XM_043842564.1 34796223 13 17274547 17274642 Telopea speciosissima 54955 CTG|GTGAAAAATA...CTTATCTTGATA/GTTTTTTTTATA...CACAG|ACA 0 1 37.731

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