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

✎ 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
179853177 GT-AG 0 1.000000099473604e-05 308339 rna-XM_047244688.1 32210511 5 332173474 332481812 Schistocerca piceifrons 274613 AAG|GTCAGTCTCA...GTATGTTTAAAT/GTATGTTTAAAT...TGCAG|GTG 0 1 5.353
179853178 GT-AG 0 1.000000099473604e-05 7856 rna-XM_047244688.1 32210511 6 332482023 332489878 Schistocerca piceifrons 274613 CAG|GTCAGCCATC...ATCAAATTAACG/ATCAAATTAACG...TGCAG|CTA 0 1 8.493
179853179 GT-AG 0 0.0115243956863093 3196 rna-XM_047244688.1 32210511 7 332493216 332496411 Schistocerca piceifrons 274613 AAG|GTATGCTCAA...AGATTTTTATCG/CAGATTTTTATC...TGCAG|ATG 1 1 58.388
179853180 GT-AG 0 0.0009744998783997 19917 rna-XM_047244688.1 32210511 8 332497045 332516961 Schistocerca piceifrons 274613 CAG|GTACCTACCA...TTACTTGTACCA/GAGACTGTTACA...TGCAG|GGT 1 1 67.853
179853181 GT-AG 0 1.000000099473604e-05 13386 rna-XM_047244688.1 32210511 9 332518796 332532181 Schistocerca piceifrons 274613 CAG|GTGAGTGCAC...AGCTCATTATCT/ATGAAGCTCATT...TACAG|ATC 2 1 95.275
179853182 GT-AG 0 1.000000099473604e-05 5882 rna-XM_047244688.1 32210511 10 332532322 332538203 Schistocerca piceifrons 274613 CTG|GTAAGTGCAG...TAAATTTTCTTT/TCAAAACTAAAT...AATAG|GAA 1 1 97.368
179853183 GT-AG 0 0.0011887427510787 3953 rna-XM_047244688.1 32210511 11 332538319 332542271 Schistocerca piceifrons 274613 CGT|GTATGTACCA...AGATCTTTCTCT/ACTATACTAACA...TGCAG|GAA 2 1 99.088
179869907 GT-AG 0 1.000000099473604e-05 166961 rna-XM_047244688.1 32210511 1 331490891 331657851 Schistocerca piceifrons 274613 CAC|GTGAGTACAC...ATCTTCTTTGTA/ATAATATTAATG...TGCAG|TTT   0 0.807
179869908 GT-AG 0 1.000000099473604e-05 172409 rna-XM_047244688.1 32210511 2 331657895 331830303 Schistocerca piceifrons 274613 TTG|GTAAGTACAA...CTGATTTTAAAT/AAGTTTCTGATT...CACAG|GTG   0 1.45
179869909 GT-AG 0 1.000000099473604e-05 223163 rna-XM_047244688.1 32210511 3 331830375 332053537 Schistocerca piceifrons 274613 AAG|GTAACACGCA...TGAACTCTAATG/TAAATGCTTACA...TCTAG|GAA   0 2.512
179869910 GT-AG 0 1.000000099473604e-05 119656 rna-XM_047244688.1 32210511 4 332053572 332173227 Schistocerca piceifrons 274613 AAG|GTAAGAAAAT...ACTGTGTTGAGT/TGAATATTCACG...TGCAG|GGC   0 3.02

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