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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
55680684 GT-AG 0 1.000000099473604e-05 132 rna-XM_023676018.1 10143790 1 15057519 15057650 Cucurbita pepo 3663 CAG|GTCCGTACTT...ATTTCCTTGTTG/TGTTGTATTATA...TTTAG|GCG 0 1 1.063
55680685 GT-AG 0 0.1147241532098604 359 rna-XM_023676018.1 10143790 2 15057700 15058058 Cucurbita pepo 3663 GAG|GTATGCTCCA...TTATTCTTACCT/TTTATTCTTACC...GGCAG|GTA 1 1 1.682
55680686 GT-AG 0 0.0045238586533412 453 rna-XM_023676018.1 10143790 3 15058227 15058679 Cucurbita pepo 3663 TGG|GTATTGTTTT...TTATTTTCATCT/TTTATTTTCATC...ATCAG|ACA 1 1 3.808
55680687 GT-AG 0 0.0005517661454667 117 rna-XM_023676018.1 10143790 4 15058882 15058998 Cucurbita pepo 3663 CTT|GTAAGCAATT...GTTTTTTTGATC/GTTTTTTTGATC...TTCAG|GTG 2 1 6.363
55680688 GT-AG 0 1.000000099473604e-05 697 rna-XM_023676018.1 10143790 5 15059217 15059913 Cucurbita pepo 3663 CTG|GTAAGATGTA...TTATTTTCAATG/GTTATTTTCAAT...TCCAG|GAT 1 1 9.121
55680689 GT-AG 0 0.000651529369712 306 rna-XM_023676018.1 10143790 6 15060914 15061219 Cucurbita pepo 3663 CAG|GTATATGCTT...GTAACTTTATTT/CTTTATTTGACT...ATCAG|GTT 2 1 21.771
55680690 GT-AG 0 0.4127754471204863 536 rna-XM_023676018.1 10143790 7 15061424 15061959 Cucurbita pepo 3663 AAG|GTCTCCTCCT...TATTCCTGAAAC/TGCGGACTTATT...GGAAG|GTC 2 1 24.352
55680691 GT-AG 0 1.000000099473604e-05 543 rna-XM_023676018.1 10143790 8 15062724 15063266 Cucurbita pepo 3663 AAG|GTAATTTAAC...CAGTCATTGATA/TTTATGTTCAAA...TTCAG|ACA 1 1 34.016
55680692 GT-AG 0 1.000000099473604e-05 121 rna-XM_023676018.1 10143790 9 15063353 15063473 Cucurbita pepo 3663 CAG|GTTGGTAGAC...TCCCTCTTTACG/TGCTTTCTAACG...TCCAG|GTG 0 1 35.104
55680693 GT-AG 0 8.341943653512151e-05 519 rna-XM_023676018.1 10143790 10 15063834 15064352 Cucurbita pepo 3663 GAA|GTAAGTTTTC...ACTAGTTTAATG/ACTAGTTTAATG...TACAG|GTC 0 1 39.658
55680694 GT-AG 0 1.000000099473604e-05 102 rna-XM_023676018.1 10143790 11 15065572 15065673 Cucurbita pepo 3663 CTG|GTTATTAGCT...ACTTCTTTCATG/ACTTCTTTCATG...CTCAG|ATC 1 1 55.079
55680695 GT-AG 0 0.01702371841818 90 rna-XM_023676018.1 10143790 12 15065940 15066029 Cucurbita pepo 3663 GAG|GTATTCAGGT...TTGGCCTTATTT/CTTATTTTAACC...TGCAG|GTG 0 1 58.444
55692974 GT-AG 0 4.066144667863124e-05 168 rna-XM_023676018.1 10143790 13 15068692 15068859 Cucurbita pepo 3663 AAG|GTTTGTTATA...AAAGTTTTGAAA/TTTATGTTTATT...CTCAG|GTG   0 92.119

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