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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
179732826 CG-GC 0 0.0003061371844126 78 rna-XM_047126185.1 32191387 1 372397584 372397661 Schistocerca americana 7009 GCG|CGCGCAGCGG...TCGGCGGCAACA/CCTCCATCGACG...GGAGC|CCG 0 1 34.966
179732827 GT-AG 0 1.000000099473604e-05 62389 rna-XM_047126185.1 32191387 2 372332543 372394931 Schistocerca americana 7009 AAG|GTTAGTTATG...GTCCCCGTATAA/CTGGTCGTTATG...TGCAG|GTG 0 1 69.893
179732828 GT-AG 0 1.000000099473604e-05 43710 rna-XM_047126185.1 32191387 3 372288441 372332150 Schistocerca americana 7009 CAG|GTACGTCTCC...GGTGCGTCAGCG/TGGTGCGTCAGC...TGCAG|TTG 2 1 75.056
179732829 GT-AG 0 1.000000099473604e-05 17342 rna-XM_047126185.1 32191387 4 372270870 372288211 Schistocerca americana 7009 CAG|GTCAGCGCCG...AGTATTATAATT/AGTATTATAATT...CGCAG|GTG 0 1 78.072
179732830 GT-AG 0 1.000000099473604e-05 348703 rna-XM_047126185.1 32191387 5 371921698 372270400 Schistocerca americana 7009 CCG|GTGAGTGTCG...GCTGTGGTGACG/GCTGTGGTGACG...TACAG|GCG 1 1 84.249
179732831 GT-AG 0 5.269558978209092e-05 7199 rna-XM_047126185.1 32191387 6 371914299 371921497 Schistocerca americana 7009 GGG|GTAAGCCGCG...TTTTTTTTATTT/ATTTTTTTTATT...AACAG|GCA 0 1 86.883
179732832 GT-AG 0 0.0001391835993532 4237 rna-XM_047126185.1 32191387 7 371909877 371914113 Schistocerca americana 7009 TCC|GTAAGTCCAT...CTGTTTTTGATT/CTGTTTTTGATT...TTCAG|ATA 2 1 89.319
179732833 GT-AG 0 0.0002883474251744 611 rna-XM_047126185.1 32191387 8 371909163 371909773 Schistocerca americana 7009 AAA|GTAAGTTATG...CTTGTCTTAATG/TCTTGTCTTAAT...TTCAG|TTC 0 1 90.676
179732834 GT-AG 0 1.000000099473604e-05 4044 rna-XM_047126185.1 32191387 9 371904957 371909000 Schistocerca americana 7009 AGG|GTGAGTGACA...TTTTTTTTAAAT/TTTTTTTTAAAT...AACAG|ACA 0 1 92.809
179732835 GT-AG 0 0.0038729052989113 3001 rna-XM_047126185.1 32191387 10 371901768 371904768 Schistocerca americana 7009 AAG|GTATGTTCAT...ATCTTTTTAATA/TTTATTTTTATT...CTTAG|TTA 2 1 95.285
179732836 GT-AG 0 2.14581883566314e-05 11425 rna-XM_047126185.1 32191387 11 371890134 371901558 Schistocerca americana 7009 CAG|GTGTGTTGAA...ATATTCTTATCT/TATATTCTTATC...TCTAG|GCA 1 1 98.038

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