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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
196000903 GT-AG 0 1.000000099473604e-05 3248 rna-XM_043857530.1 34796228 1 60013277 60016524 Telopea speciosissima 54955 GAG|GTGCGCTAGC...GCTTTTTTGAAA/TGGTTATTAACA...TTCAG|GTC 0 1 8.016
196000904 GT-AG 0 0.0001733001567137 1423 rna-XM_043857530.1 34796228 2 60016735 60018157 Telopea speciosissima 54955 CAG|GTATTGATTT...TTGTCTTTGGTT/ATGAACTTGAAT...GGCAG|GTC 0 1 13.684
196000905 GT-AG 0 0.0001458487995912 121 rna-XM_043857530.1 34796228 3 60018353 60018473 Telopea speciosissima 54955 CAA|GTAAAGTGTT...GTTTTCTTAACT/GTTTTCTTAACT...TGAAG|GTT 0 1 18.947
196000906 GT-AG 1 92.36244638740678 4087 rna-XM_043857530.1 34796228 4 60018842 60022928 Telopea speciosissima 54955 TAG|GTATCCTTTT...TCTTTCTTAATT/TATATATTCATT...TGCAG|TAT 2 1 28.88
196000907 GT-AG 0 1.000000099473604e-05 318 rna-XM_043857530.1 34796228 5 60023155 60023472 Telopea speciosissima 54955 CAG|GTGAGCCTTA...TTTCTCTTAAAG/CATCTATTAATT...TATAG|GTC 0 1 34.98
196000908 GT-AG 0 1.000000099473604e-05 95 rna-XM_043857530.1 34796228 6 60023642 60023736 Telopea speciosissima 54955 CAG|GTGTGTTCCT...ACATCTCTGACT/TATGTACTGATA...TACAG|CAC 1 1 39.541
196000909 GT-AG 0 1.000000099473604e-05 134 rna-XM_043857530.1 34796228 7 60024937 60025070 Telopea speciosissima 54955 AAG|GTTTGTGCAG...GCATTTATAATC/TATAATCTTATG...TTTAG|GCA 1 1 71.93
196000910 GT-AG 0 0.0044516900732284 73 rna-XM_043857530.1 34796228 8 60025243 60025315 Telopea speciosissima 54955 TAG|GTATGTTTCT...TATATCTGGATC/CATACTCTGATC...GTTAG|TCG 2 1 76.572
196000911 GT-AG 0 0.0008137707159031 82 rna-XM_043857530.1 34796228 9 60025538 60025619 Telopea speciosissima 54955 TAG|GTAATTTTTG...TTTTCTTTAATA/TTTTCTTTAATA...TGCAG|GAA 2 1 82.564
196000912 GT-AG 0 1.000000099473604e-05 1759 rna-XM_043857530.1 34796228 10 60025758 60027516 Telopea speciosissima 54955 AAG|GTAAGGGGCT...ATCTTTTTATTT/TTTTTATTTATT...TTCAG|GAC 2 1 86.289
196000913 GT-AG 0 6.659825835222793e-05 123 rna-XM_043857530.1 34796228 11 60027752 60027874 Telopea speciosissima 54955 AAG|GTCTGCCATT...TTGTACTTAGAT/CTTGTACTTAGA...AATAG|GTG 0 1 92.632
196000914 GT-AG 0 1.000000099473604e-05 14699 rna-XM_043857530.1 34796228 12 60027935 60042633 Telopea speciosissima 54955 GCG|GTAAGAGATT...GATCTCTAAAAG/AAGATTATCAAC...TCCAG|GTG 0 1 94.251
196000915 GT-AG 0 0.3193125167502211 93 rna-XM_043857530.1 34796228 13 60042706 60042798 Telopea speciosissima 54955 CAG|GTACCTTTGC...CTTCCTTTATTA/AGAATGCTAATT...TCCAG|GAT 0 1 96.194

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