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)

11 rows where transcript_id = 13229508

✎ 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
70543798 GT-AG 0 0.0001491256922109 123 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 1 62884 63006 Endogone sp. flas-f59071 2340872 ACT|GTTTTGCTGG...GCAAGCTTAACG/GCAAGCTTAACG...TACAG|GGC 2 1 5.131
70543799 GT-AG 0 0.0014833561834705 98 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 2 62588 62685 Endogone sp. flas-f59071 2340872 CTG|GTACGCTTGT...GTAGTTTAAGTT/CGTAGTTTAAGT...GGTAG|TCA 2 1 11.949
70543800 GT-AG 0 1.000000099473604e-05 104 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 3 62221 62324 Endogone sp. flas-f59071 2340872 AAG|GTAAGTTCGA...TTTTCTTTTATG/AATGGATTGATT...TGTAG|CCA 1 1 21.006
70543801 GT-AG 0 0.0007008324085118 100 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 4 61993 62092 Endogone sp. flas-f59071 2340872 GAG|GTATTATAAT...TTTTTTTTATTT/ATTTTTTTTATT...GCTAG|ATG 0 1 25.413
70543802 GT-AG 0 1.6830683359763002e-05 85 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 5 61759 61843 Endogone sp. flas-f59071 2340872 GAA|GTAAGTATCT...TGTATCTTGAGT/TGTATCTTGAGT...ACAAG|GAT 2 1 30.544
70543803 GT-AG 0 1.000000099473604e-05 93 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 6 61521 61613 Endogone sp. flas-f59071 2340872 CTG|GTAAGTCTCA...TATCTCTCAACA/ATATCTCTCAAC...CACAG|TCC 0 1 35.537
70543804 GT-AG 0 1.000000099473604e-05 862 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 7 60429 61290 Endogone sp. flas-f59071 2340872 TGT|GTAAAAGTTT...GTCACTTAAGTT/CCGCACGTCACT...CAAAG|AAA 2 1 43.457
70543805 GT-AG 0 1.000000099473604e-05 96 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 8 59832 59927 Endogone sp. flas-f59071 2340872 GAG|GTAAAGCTGT...GATTCCTTACGT/CGATTCCTTACG...TATAG|GAC 2 1 60.709
70543806 GT-AG 0 1.000000099473604e-05 114 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 9 59570 59683 Endogone sp. flas-f59071 2340872 AAG|GTTGGTTGTT...ATTCAATTGATT/TTTCTATTCAAT...AATAG|CAC 0 1 65.806
70543807 GT-AG 0 0.0092952887284988 41 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 10 59313 59353 Endogone sp. flas-f59071 2340872 CCC|GTCCCGCTTC...CGCTCCTTTCCC/CAATGCTTCGCT...TCTAG|AAA 0 1 73.244
70543808 GT-AG 0 0.0869579158424654 151 rna-gnl|WGS:RBNK|BC937DRAFT_mRNA86137 13229508 11 58844 58994 Endogone sp. flas-f59071 2340872 CAC|GTATGTTTTT...AACTCCTTCCCC/TCGACACTAAAA...GCCAG|GCC 0 1 84.194

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