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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
179733811 GT-AG 0 1.000000099473604e-05 46327 rna-XM_047136011.1 32191426 3 1248696403 1248742729 Schistocerca americana 7009 CAC|GTAAGTAACT...TTGCTTCTATTT/CTTCTATTTACG...TTCAG|AAT 2 1 4.895
179733812 GT-AG 0 2.488543584312976e-05 41366 rna-XM_047136011.1 32191426 4 1248654982 1248696347 Schistocerca americana 7009 AGG|GTATGTATAA...GCCTCTCTGCTG/GAACAAGTAACC...GGCAG|GAG 0 1 5.836
179733813 GT-AG 0 1.000000099473604e-05 15349 rna-XM_047136011.1 32191426 5 1248637847 1248653195 Schistocerca americana 7009 TAG|GTAAGTGGCC...CCTACTTAACAT/GCTAGTTGCATA...CTCAG|CTC 1 1 36.403
179733814 GT-AG 0 3.001032464982673e-05 8811 rna-XM_047136011.1 32191426 6 1248628867 1248637677 Schistocerca americana 7009 CAG|GTATAACTCG...AATTACATAACA/AATTACATAACA...TGTAG|CTC 2 1 39.295
179733815 GT-AG 0 1.000000099473604e-05 5119 rna-XM_047136011.1 32191426 7 1248623222 1248628340 Schistocerca americana 7009 CAG|GTGGGAATGA...TACTTTTTACTT/TTACTTTTTACT...TGCAG|GAA 0 1 48.297
179733816 GT-AG 0 1.9740628176593226e-05 55721 rna-XM_047136011.1 32191426 8 1248567340 1248623060 Schistocerca americana 7009 ATT|GTAAGTATAC...TGTTCTTTTGTT/TTATTTGTTATA...GACAG|GTA 2 1 51.053
179733817 GT-AG 0 1.000000099473604e-05 5148 rna-XM_047136011.1 32191426 9 1248561677 1248566824 Schistocerca americana 7009 ATG|GTTAGAAAAA...TCTTTTTTAACA/TCTTTTTTAACA...TTCAG|GTT 1 1 59.867
179733818 GT-AG 0 1.000000099473604e-05 61003 rna-XM_047136011.1 32191426 10 1248499134 1248560136 Schistocerca americana 7009 TGG|GTGTGTACAC...AGTATTTTGATG/AGTATTTTGATG...TTCAG|ATC 2 1 86.223
179733819 GT-AG 0 1.620769853449199e-05 75 rna-XM_047136011.1 32191426 11 1248498404 1248498478 Schistocerca americana 7009 CGT|GTAAGTAATC...TTGTCTCTAATT/CTAATTCTGATT...TCCAG|CCT 0 1 97.433
179750122 GT-AG 0 2.32473008818978e-05 56135 rna-XM_047136011.1 32191426 1 1248772508 1248828642 Schistocerca americana 7009 CGG|GTAAGCACTT...GTTCTTTTATTA/GGTTCTTTTATT...TGCAG|GAT   0 1.78
179750123 GT-AG 0 1.000000099473604e-05 29537 rna-XM_047136011.1 32191426 2 1248742803 1248772339 Schistocerca americana 7009 CAC|GTGAGTATTT...CTGTTTGTGGCT/TGGAAAGTGATT...CGCAG|GTG   0 4.655

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