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

✎ 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
33379715 GT-AG 0 1.000000099473604e-05 121 rna-XM_030631800.1 6439320 1 95389145 95389265 Cannabis sativa 3483 TTG|GTGAGAATGT...TCATACTTATCT/CCTTTTCTCATA...TTCAG|ATG 1 1 25.262
33379716 GT-AG 0 0.0005937321431009 75 rna-XM_030631800.1 6439320 2 95388956 95389030 Cannabis sativa 3483 ATG|GTAACTATAA...GATTTCTGACTT/TGATTTCTGACT...CACAG|TAA 1 1 27.438
33379717 GT-AG 0 0.0006805225416096 3852 rna-XM_030631800.1 6439320 4 95384614 95388465 Cannabis sativa 3483 TTG|GTTTGTTTTC...GGATTCTGATTT/TATTACCTCACT...ATCAG|ATG 1 1 36.768
33379718 GT-AG 0 4.287958015449779e-05 85 rna-XM_030631800.1 6439320 5 95384291 95384375 Cannabis sativa 3483 ATT|GTAAGTAATA...CAGTTTTTGATA/TTTTGTTTCAAT...TGCAG|AGG 2 1 41.309
33379719 GT-AG 0 1.000000099473604e-05 107 rna-XM_030631800.1 6439320 6 95384033 95384139 Cannabis sativa 3483 TAT|GTGAGTAGTT...TCATTCTTATGA/ATCATTCTTATG...TGTAG|GCA 0 1 44.19
33379720 TA-AG 0 5.433965981222909e-05 762 rna-XM_030631800.1 6439320 7 95382980 95383741 Cannabis sativa 3483 CGA|TAAAGTCTCA...AATAGCTTAATT/TAATTATTGACG...TCTAG|TCA 0 1 49.742
33379721 GT-AG 0 3.971057805217555e-05 118 rna-XM_030631800.1 6439320 8 95381439 95381556 Cannabis sativa 3483 TTG|GTGAGCTTGT...TATTCCTTAAAA/TTTTTTATCATA...TTCAG|AAG 1 1 76.894
33379722 GT-AG 0 1.6278982269915955e-05 85 rna-XM_030631800.1 6439320 9 95381237 95381321 Cannabis sativa 3483 ATG|GTAATTATAA...TGAATTTTGATT/ATAGTTCTCATA...CACAG|TAA 1 1 79.126
33379723 GT-AG 0 3.0690494883160655e-05 109 rna-XM_030631800.1 6439320 10 95380928 95381036 Cannabis sativa 3483 AAG|GTCACTTCTT...AGATTCATAAAC/ACAAGATTCATA...TGCAG|GGA 0 1 82.942
33379724 GT-AG 0 0.0003865504373209 177 rna-XM_030631800.1 6439320 11 95380540 95380716 Cannabis sativa 3483 TTG|GTTTGTTACT...TGGATTTTGATT/TGGATTTTGATT...ATCAG|ATG 1 1 86.968
33379725 GT-AG 0 1.4140276772783611e-05 85 rna-XM_030631800.1 6439320 12 95380217 95380301 Cannabis sativa 3483 ATT|GTAAGTAATA...TGCTCTTCAATC/ACAGTTTTCAAT...TGCAG|AGG 2 1 91.509
33379726 GT-AG 0 1.000000099473604e-05 93 rna-XM_030631800.1 6439320 13 95379973 95380065 Cannabis sativa 3483 TAT|GTGAGTTCAA...GTCTATTTATAT/TGTCTATTTATA...TTTAG|GCA 0 1 94.39

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