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)

12 rows where transcript_id = 32210482

✎ 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
179852407 GT-AG 0 1.000000099473604e-05 55073 rna-XM_047248466.1 32210482 4 389848740 389903812 Schistocerca piceifrons 274613 CCG|GTGAGTACTT...CTTCTGTCAACC/GTCACGTTTACA...TGCAG|CAC 1 1 2.902
179852408 GT-AG 0 1.000000099473604e-05 5553 rna-XM_047248466.1 32210482 5 389843133 389848685 Schistocerca piceifrons 274613 GAG|GTAAGTAATA...GCTTATTTGATG/TTAAAATTAATT...TGCAG|GTT 1 1 3.44
179852409 GT-AG 0 1.000000099473604e-05 813 rna-XM_047248466.1 32210482 6 389842110 389842922 Schistocerca piceifrons 274613 AAG|GTGATTATAC...TGACTTCTGACT/ATTAATCTGACT...TGTAG|TGC 1 1 5.535
179852410 GT-AG 0 0.0002208213165363 659 rna-XM_047248466.1 32210482 7 389841320 389841978 Schistocerca piceifrons 274613 AAG|GTATTTAAAT...TTTTTCTTTTTT/CTTTTTTTTAAT...TTTAG|ATA 0 1 6.841
179852411 GT-AG 0 1.000000099473604e-05 1199 rna-XM_047248466.1 32210482 8 389839973 389841171 Schistocerca piceifrons 274613 GTG|GTGAGTATTA...CACATTTTATCA/CATTTTATCATA...TACAG|ATT 1 1 8.317
179852412 GT-AG 0 4.351382263918711e-05 3947 rna-XM_047248466.1 32210482 9 389835732 389839678 Schistocerca piceifrons 274613 GTG|GTAAGCATGT...ATTTTCATATTT/TGAATTTTCATA...TTCAG|ATA 1 1 11.249
179852413 GT-AG 0 5.323316696809198e-05 2802 rna-XM_047248466.1 32210482 10 389829978 389832779 Schistocerca piceifrons 274613 AGG|GTAAGTTTGA...ATATTTTTATTT/TATATTTTTATT...AACAG|GTA 1 1 40.686
179852414 GT-AG 0 1.000000099473604e-05 3695 rna-XM_047248466.1 32210482 11 389826085 389829779 Schistocerca piceifrons 274613 GTG|GTAAGTGCAT...TGTGCTTTAATA/TAAATTCTAAAT...TTCAG|ATG 1 1 42.661
179852415 GT-AG 0 1.000000099473604e-05 5889 rna-XM_047248466.1 32210482 12 389814546 389820434 Schistocerca piceifrons 274613 CAG|GTGAGACCAC...ATGTTTTTTTCC/ATCAGATTTATA...CATAG|GTG 2 1 99.003
179869895 GT-AG 0 1.000000099473604e-05 57630 rna-XM_047248466.1 32210482 1 390041306 390098935 Schistocerca piceifrons 274613 AAG|GTGAGTCCAG...AGTTCCTTTACA/CATTTTCTAATT...TGCAG|CGT   0 0.628
179869896 GT-AG 0 2.436313741452653e-05 61511 rna-XM_047248466.1 32210482 2 389979713 390041223 Schistocerca piceifrons 274613 ACT|GTAAGTCCAC...ACAATTTTAATT/ACAATTTTAATT...TGCAG|TGC   0 1.446
179869897 GT-AG 0 1.000000099473604e-05 75747 rna-XM_047248466.1 32210482 3 389903902 389979648 Schistocerca piceifrons 274613 AAG|GTAAGAAAAC...GGTGCATTAATG/GGTGCATTAATG...TGCAG|GTC   0 2.084

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