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)

14 rows where transcript_id = 13349320

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, scored_motifs, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
71011231 GT-AG 0 1.000000099473604e-05 52 mRNA_820 13349320 1 65557089 65557140 Entomophaga maimaiga 42810 CCG|GTGACCCACC...CATGCCGGACCA/CCAGTATACAGC...TGAAG|GCC 1 1 0.257
71011232 GT-AG 0 0.3321165741571812 36 mRNA_820 13349320 2 65557191 65557226 Entomophaga maimaiga 42810 CAT|GTGTCTCTCT...TTTGTCTTGGCT/CTTGGCTAGAAA...CCTAG|AAA 0 1 2.093
71011233 GT-AG 0 0.0955257916853619 81 mRNA_820 13349320 3 65557284 65557364 Entomophaga maimaiga 42810 TGT|GTTCCTCCCA...TTCTCCTTGTCT/TGTCTCCTCAAG...ACAAG|ACG 0 1 4.185
71011234 GT-AG 0 0.0168797762154013 284 mRNA_820 13349320 4 65557448 65557731 Entomophaga maimaiga 42810 CAC|GTCCCTATAA...CCCTCTTTATCT/CAAACATTCACT...TAGAG|CAT 2 1 7.232
71011235 GT-AG 0 1.297905382981543 51 mRNA_820 13349320 5 65558027 65558077 Entomophaga maimaiga 42810 CCT|GTTTCTTGTC...AACTCCCTGCCT/TTTTGGAAGACC...CTGAG|CCC 0 1 18.062
71011236 GT-AG 0 0.0033826112317932 30 mRNA_820 13349320 6 65558141 65558170 Entomophaga maimaiga 42810 CCT|GTTTGCTAGT...ATCCCCGTCTCC/TCTATCCCCGTC...TCCAG|GGG 0 1 20.374
71011237 GT-AG 0 1.000000099473604e-05 38 mRNA_820 13349320 7 65558258 65558295 Entomophaga maimaiga 42810 ATA|GTGCGTTGAT...TGTTCTATAGAT/GTTCTATAGATT...CCTAG|CTT 0 1 23.568
71011238 GT-AG 0 0.0009853153895791 30 mRNA_820 13349320 9 65559076 65559105 Entomophaga maimaiga 42810 CCA|GTAGCTTGAG...GGAGTCAAAGGA/TCAAAGGAGACC...ACCAG|TAC 2 1 51.285
71011239 GT-AG 0 0.0057114951267117 43 mRNA_820 13349320 10 65559539 65559581 Entomophaga maimaiga 42810 AGA|GTTCCCAGCA...GGCCTCTTGTTC/TTCAATCTCATG...CTTAG|GGG 0 1 67.181
71011240 GT-AG 0 0.0018163732683264 53 mRNA_820 13349320 11 65559696 65559748 Entomophaga maimaiga 42810 ATG|GTACCACCCA...GAATGCTTAATC/TGAATGCTTAAT...TCCAG|GCT 0 1 71.366
71011241 GT-AG 0 1.000000099473604e-05 37 mRNA_820 13349320 12 65559870 65559906 Entomophaga maimaiga 42810 CCA|GTGATGACGC...GGATCCTGGCCT/CCTGGCCTCCCT...CAGAG|TAC 1 1 75.808
71011242 GT-AG 0 3.502205845074902e-05 81 mRNA_820 13349320 13 65560299 65560379 Entomophaga maimaiga 42810 AAA|GTCTAATCAA...GCCTGTTTAATT/GCCTGTTTAATT...AAAAG|GGT 0 1 90.198
71011243 GT-AG 0 0.3321165741571812 36 mRNA_820 13349320 14 65560488 65560523 Entomophaga maimaiga 42810 CAT|GTGTCTCTCT...TTTGTCTTGGCT/CTTGGCTAGAAA...CCTAG|AAA 0 1 94.163
71011244 GT-AG 0 0.0010907502348207 40 mRNA_820 13349320 15 65560594 65560633 Entomophaga maimaiga 42810 TTT|GTAGATGGTC...TTCTCCTTGTCT/TGCTTTCTCCTT...TCAAG|ACC 1 1 96.733

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