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

✎ 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
196000752 GT-AG 0 0.0002275397445965 314 rna-XM_043838065.1 34796211 1 3686722 3687035 Telopea speciosissima 54955 AAT|GTAAGTTCAT...TGTTTCTTATTT/TTGTTTCTTATT...GGCAG|ATC 0 1 2.676
196000753 GT-AG 0 0.0546157440225714 148 rna-XM_043838065.1 34796211 2 3686422 3686569 Telopea speciosissima 54955 CTG|GTCTCTCTCT...TATATCATAATT/TCATAATTAATT...AGCAG|GCA 2 1 6.549
196000754 GT-AG 0 0.0005687861041251 127 rna-XM_043838065.1 34796211 3 3686050 3686176 Telopea speciosissima 54955 TTG|GTATATGTGT...AGACCATTAAAT/GCAAGTCTGACT...TATAG|GAA 1 1 12.793
196000755 GT-AG 0 0.0003099533805233 1351 rna-XM_043838065.1 34796211 4 3684570 3685920 Telopea speciosissima 54955 CAG|GTAACTAACT...TTTTTTTTATAT/TTTTTTTTTATA...TGCAG|GAA 1 1 16.081
196000756 GT-AG 0 1.000000099473604e-05 125 rna-XM_043838065.1 34796211 5 3683497 3683621 Telopea speciosissima 54955 CTG|GTAATTTGCT...AATTAATTGATG/AATTAATTGATG...GGCAG|GAG 1 1 40.24
196000757 TG-AG 0 0.0056327779454755 3600 rna-XM_043838065.1 34796211 6 3679769 3683368 Telopea speciosissima 54955 TGC|TGAGATTTTA...AAGCTCTTCTTT/AACTTGCTGAAC...TGTAG|ACA 0 1 43.502
196000758 GT-AG 0 0.0002742964472972 440 rna-XM_043838065.1 34796211 7 3678901 3679340 Telopea speciosissima 54955 GCC|GTCACTAGCG...AACTCCATAAAA/TAAAACCTCATT...CATAG|GTG 2 1 54.409
196000759 GT-AG 0 2.3051094073517544e-05 283 rna-XM_043838065.1 34796211 8 3678461 3678743 Telopea speciosissima 54955 AAT|GTAAGTTCAT...ATTTTCTTTTTT/TCTTTTGTTATT...TGTAG|ATC 0 1 58.41
196000760 GT-AG 0 1.4960853500558184 148 rna-XM_043838065.1 34796211 9 3678161 3678308 Telopea speciosissima 54955 CTG|GTATCTCTCT...TATATCATAATT/TCATAATTAATT...AGCAG|GCA 2 1 62.283
196000761 GT-AG 0 0.0005306581409726 127 rna-XM_043838065.1 34796211 10 3677789 3677915 Telopea speciosissima 54955 TTG|GTATATGTGT...AGACCATTAAAT/GCATGTCTGACT...TATAG|GAA 1 1 68.527
196000762 GT-AG 0 7.733411228937336e-05 1016 rna-XM_043838065.1 34796211 11 3676644 3677659 Telopea speciosissima 54955 CAG|GTAACTAACT...TTTTTCATATTA/TTATTTTTCATA...TGCAG|GAA 1 1 71.814
196000763 GT-AG 0 1.000000099473604e-05 94 rna-XM_043838065.1 34796211 12 3675578 3675671 Telopea speciosissima 54955 CTG|GTAATTAATT...TATATTTGAATT/TTTGGTTTCACG...TACAG|GAG 1 1 96.585

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