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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
106118024 GT-AG 0 1.000000099473604e-05 143 rna-XM_022021238.1 19819712 1 1062392 1062534 Lobosporangium transversale 64571 CAG|GTAACGGAGA...ATTTTCTTCATC/ATTTTCTTCATC...AATAG|GGT 0 1 3.203
106118025 GT-AG 0 1.000000099473604e-05 153 rna-XM_022021238.1 19819712 2 1062778 1062930 Lobosporangium transversale 64571 GAG|GTAAATGGAT...ACTGGCTGAACA/TACTGGCTGAAC...CGTAG|GAT 0 1 12.811
106118026 GT-AG 0 0.0002620326768839 120 rna-XM_022021238.1 19819712 3 1063001 1063120 Lobosporangium transversale 64571 TTG|GTATGTCGGA...TCTTTTTTATAT/TTTATATTTATA...GATAG|GTG 1 1 15.579
106118027 GT-AG 0 1.000000099473604e-05 95 rna-XM_022021238.1 19819712 4 1063333 1063427 Lobosporangium transversale 64571 CTG|GTACTGGCCC...CTTGCTTTACTA/CCTTGCTTTACT...CACAG|GCA 0 1 23.962
106118028 GT-AG 0 1.000000099473604e-05 105 rna-XM_022021238.1 19819712 5 1063527 1063631 Lobosporangium transversale 64571 GCG|GTAAGGATGC...CGAGCTTTATCT/CTTTATCTGACG...TATAG|CAT 0 1 27.877
106118029 GT-AG 0 1.000000099473604e-05 136 rna-XM_022021238.1 19819712 6 1063760 1063895 Lobosporangium transversale 64571 TCA|GTAAGAATAG...TGTTTTTTAGTC/TTGTTTTTTAGT...TATAG|AGA 2 1 32.938
106118030 GT-AG 0 0.0010726109063643 98 rna-XM_022021238.1 19819712 7 1064068 1064165 Lobosporangium transversale 64571 TCT|GTAAGCATAT...TGTTGCTTATCT/CTGTTGCTTATC...TTTAG|ATC 0 1 39.739
106118031 GT-AG 0 1.000000099473604e-05 103 rna-XM_022021238.1 19819712 8 1064493 1064595 Lobosporangium transversale 64571 CAG|GTAATGATAA...ATTTTCTTAATT/ATTTTCTTAATT...ATTAG|CTG 0 1 52.669
106118032 GT-AG 0 1.000000099473604e-05 106 rna-XM_022021238.1 19819712 9 1064856 1064961 Lobosporangium transversale 64571 AAG|GTAAAGGCTC...CTGTTTTTAATT/CTGTTTTTAATT...GTTAG|GCC 2 1 62.95
106118033 GT-AG 0 2.425201579300156e-05 101 rna-XM_022021238.1 19819712 10 1065040 1065140 Lobosporangium transversale 64571 TTC|GTAAGTACAG...CTGTTTTTATTC/TTTTTATTCAAT...AATAG|AGC 2 1 66.034
106118034 GT-AG 0 0.0002224301816254 107 rna-XM_022021238.1 19819712 11 1065262 1065368 Lobosporangium transversale 64571 ATT|GTAAGTTGAA...TTCTCCCTAACT/TAATCTTTTACT...ACTAG|CTG 0 1 70.819
106118035 GT-AG 0 0.0003327789919006 95 rna-XM_022021238.1 19819712 12 1065695 1065789 Lobosporangium transversale 64571 CGG|GTATGGTTAT...ATGTCATTATTT/AAATGACTTATA...ACTAG|GAT 2 1 83.709
106118036 GT-AG 0 2.827791159288568e-05 121 rna-XM_022021238.1 19819712 13 1065853 1065973 Lobosporangium transversale 64571 AAA|GTAAGTCTCA...ATGTTCTAAAAA/CACCTTCTTATG...AAAAG|AGA 2 1 86.2

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