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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
196000397 GT-AG 0 0.0003112964802274 768 rna-XM_043862889.1 34796183 2 81088143 81088910 Telopea speciosissima 54955 ACT|GTAAGTTCTT...TTCTTCTTGTTC/TTCTTGTTCATT...TACAG|ATT 0 1 47.222
196000398 GT-AG 0 0.0002675465752227 79 rna-XM_043862889.1 34796183 3 81089232 81089310 Telopea speciosissima 54955 AAT|GTAAACAGAC...TATCTCTTATTG/CTATCTCTTATT...GGCAG|GAA 0 1 54.299
196000399 GT-AG 0 1.000000099473604e-05 623 rna-XM_043862889.1 34796183 4 81089398 81090020 Telopea speciosissima 54955 TTG|GTTAGTCAGT...TGCATCTTGATG/TGCATCTTGATG...GGCAG|TTA 0 1 56.217
196000400 GT-AG 0 1.000000099473604e-05 80 rna-XM_043862889.1 34796183 5 81090609 81090688 Telopea speciosissima 54955 CGG|GTGAGCATCT...TCTTTCTTATTT/TTTTTCCTGACT...TACAG|GTC 0 1 69.18
196000401 GT-AG 0 0.0034467941595364 626 rna-XM_043862889.1 34796183 6 81090854 81091479 Telopea speciosissima 54955 CAG|GTATATCATA...TTGGTTTTAATC/TTGGTTTTAATC...AACAG|AAA 0 1 72.817
196000402 GT-AG 0 1.000000099473604e-05 1107 rna-XM_043862889.1 34796183 7 81091775 81092881 Telopea speciosissima 54955 CAG|GTGAGTTCCT...CTTCCATTACTA/TACTGGTTCATG...GGCAG|GAT 1 1 79.321
196000403 GT-AG 0 0.0018250490610116 95 rna-XM_043862889.1 34796183 8 81093097 81093191 Telopea speciosissima 54955 AAG|GTAACTTATC...TAATTCATGAAA/TAATAATTCATG...AGCAG|ATC 0 1 84.061
196000404 GT-AG 0 1.000000099473604e-05 576 rna-XM_043862889.1 34796183 9 81093498 81094073 Telopea speciosissima 54955 GAG|GTATGACAAC...CTATTTCTAACT/CTATTTCTAACT...GAAAG|GTC 0 1 90.807
196000405 GC-AG 0 1.000000099473604e-05 86 rna-XM_043862889.1 34796183 10 81094138 81094223 Telopea speciosissima 54955 TAG|GCAAGTTACA...TCTTTCTTTATG/TTATGATTTATC...TACAG|TAA 1 1 92.218
196000406 GT-AG 0 1.000000099473604e-05 299 rna-XM_043862889.1 34796183 11 81094464 81094762 Telopea speciosissima 54955 ATG|GTAAGTCTCA...AGTGTCTTACAC/ACTATTTTCATC...TTCAG|GAA 1 1 97.509
196014304 GT-AG 0 1.9216090181270624e-05 161 rna-XM_043862889.1 34796183 1 81085896 81086056 Telopea speciosissima 54955 CAG|GTACGTAATG...GTCTTCCTGACA/GTCTTCCTGACA...TTCAG|ATT   0 1.786

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