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

✎ 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
55681629 GT-AG 0 1.000000099473604e-05 467 rna-XM_023679725.1 10143866 3 17971875 17972341 Cucurbita pepo 3663 AAG|GTGAGCCAGT...GCTCTCTTACAT/TTTACTTTCATC...TTCAG|GCT 0 1 10.11
55681630 GT-AG 0 8.241124256692455e-05 140 rna-XM_023679725.1 10143866 4 17971663 17971802 Cucurbita pepo 3663 GAG|GTTTTTCTCG...TTTAGCTTATTG/GTTTAGCTTATT...TGCAG|TTA 0 1 12.001
55681631 GT-AG 0 1.000000099473604e-05 111 rna-XM_023679725.1 10143866 5 17971497 17971607 Cucurbita pepo 3663 TAG|GTAAGGACCA...TGTCTTTTATCG/TTGTCTTTTATC...TCCAG|CAA 1 1 13.445
55681632 GT-AG 0 1.000000099473604e-05 94 rna-XM_023679725.1 10143866 6 17971260 17971353 Cucurbita pepo 3663 GAG|GTAAGTTTAA...TGGCTCATATAT/TGGTGGCTCATA...TTCAG|AAT 0 1 17.201
55681633 GT-AG 0 1.000000099473604e-05 288 rna-XM_023679725.1 10143866 7 17970700 17970987 Cucurbita pepo 3663 TTG|GTAAGTGGTT...ATGATCTTACTA/CATGATCTTACT...GACAG|GTG 2 1 24.343
55681634 GT-AG 0 0.0003104272474222 154 rna-XM_023679725.1 10143866 8 17970490 17970643 Cucurbita pepo 3663 CTG|GTTTGTTCAT...TTTTCCTTTTTT/TAGAATGCTATC...CTTAG|CTA 1 1 25.814
55681635 GT-AG 0 1.000000099473604e-05 87 rna-XM_023679725.1 10143866 9 17970162 17970248 Cucurbita pepo 3663 CAG|GTCGAATTCC...TTAGCCTCAATG/TGGATACTCATA...CGTAG|GTA 2 1 32.143
55681636 GT-AG 0 0.0013759101508694 674 rna-XM_023679725.1 10143866 10 17969337 17970010 Cucurbita pepo 3663 AGA|GTAAGCTAGT...ATATTCTTACTG/ATGTTTCTGATT...TGCAG|CTA 0 1 36.108
55681637 GT-AG 0 0.0209479912614121 123 rna-XM_023679725.1 10143866 11 17969004 17969126 Cucurbita pepo 3663 CAG|GTACCTCTTA...CAAGCCATATTG/TATCATCTAACA...GCCAG|ATA 0 1 41.623
55681638 GT-AG 0 4.7828604415421145e-05 294 rna-XM_023679725.1 10143866 12 17967168 17967461 Cucurbita pepo 3663 CAG|GTAAGCTAAT...CTTGCTTTAATT/TTTATTTTGATC...TATAG|GTA 0 1 82.117
55681639 GT-AG 0 0.0004152303714743 303 rna-XM_023679725.1 10143866 13 17966796 17967098 Cucurbita pepo 3663 CAG|GTCTATTTTC...CTTCTCTTGCTT/GATTGCTTCATC...TGCAG|GCT 0 1 83.929
55681640 GT-AG 0 1.000000099473604e-05 169 rna-XM_023679725.1 10143866 14 17966408 17966576 Cucurbita pepo 3663 GAG|GTGATATTAA...AACTTCTTATTT/TAACTTCTTATT...GACAG|CTC 0 1 89.68
55681641 GT-AG 0 1.000000099473604e-05 162 rna-XM_023679725.1 10143866 15 17966153 17966314 Cucurbita pepo 3663 AAG|GTAATATCTT...GACACATTGATC/TGTCGATTAACG...TACAG|TGT 0 1 92.122

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