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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
156032786 GT-AG 0 1.000000099473604e-05 32 rna175.p1 28131448 1 396607 396638 Planoprotostelium fungivorum 1890364 GAG|GTGATCTCGT...TCATCCATCTCA/CAATCATCCATC...CAAAG|AAG 0 1 4.144
156032787 GT-AG 0 1.000000099473604e-05 38 rna175.p1 28131448 2 396964 397001 Planoprotostelium fungivorum 1890364 AGA|GTGAGCGGTG...TCTGGCTCGACT/GCTCGACTCAAC...CACAG|GTG 1 1 18.627
156032788 GT-AG 0 1.000000099473604e-05 41 rna175.p1 28131448 3 397164 397204 Planoprotostelium fungivorum 1890364 TCA|GTGAGTTACA...GTCATCTGACCC/CGTCATCTGACC...CGCAG|TGG 1 1 25.847
156032789 GT-AG 0 3.1414686984011617e-05 40 rna175.p1 28131448 4 397309 397348 Planoprotostelium fungivorum 1890364 AGG|GTATTTCACG...TCTGGGGTGACT/GGGTGACTGACG...AACAG|AGA 0 1 30.481
156032790 GT-AG 0 1.000000099473604e-05 68 rna175.p1 28131448 5 397421 397488 Planoprotostelium fungivorum 1890364 ATC|GTGAGGAATC...AGTCTCTTAATA/CGCACTCTCACT...TACAG|ACG 0 1 33.69
156032791 GT-AG 0 1.000000099473604e-05 38 rna175.p1 28131448 6 397607 397644 Planoprotostelium fungivorum 1890364 CAG|GTTCATATCG...ATCTTTTTGAGA/TTGAGATTGATC...GATAG|ATC 1 1 38.948
156032792 GT-AG 0 1.000000099473604e-05 38 rna175.p1 28131448 7 397704 397741 Planoprotostelium fungivorum 1890364 CAG|GTAGGTTCAT...TCAACCTCATTC/ACCTCATTCATC...TTCAG|GTG 0 1 41.578
156032793 GT-AG 0 1.000000099473604e-05 57 rna175.p1 28131448 8 397798 397854 Planoprotostelium fungivorum 1890364 GAG|GTGTGTCATC...AACCCATTTACA/CACTCGCTCAAT...ATCAG|AAT 2 1 44.073
156032794 GT-AG 0 1.000000099473604e-05 37 rna175.p1 28131448 9 397931 397967 Planoprotostelium fungivorum 1890364 TAT|GTGAAACCTT...CTATACATAACG/AACGATCTCACC...ATCAG|TTG 0 1 47.46
156032795 GT-AG 0 1.000000099473604e-05 46 rna175.p1 28131448 10 398119 398164 Planoprotostelium fungivorum 1890364 CAG|GTACGTGCTA...ACCTTCTGATCC/CACCTTCTGATC...ATCAG|ATC 1 1 54.189
156032796 GT-AG 0 1.000000099473604e-05 40 rna175.p1 28131448 11 398428 398467 Planoprotostelium fungivorum 1890364 GAG|GTGAGCATAT...AATGACAGAATA/GAAAGAATGACA...TCCAG|TCT 0 1 65.909
156032797 GT-AG 0 1.000000099473604e-05 39 rna175.p1 28131448 12 398606 398644 Planoprotostelium fungivorum 1890364 GAT|GTGAAACCTC...ACAAACTCACCA/CACAAACTCACC...TTCAG|GTT 0 1 72.059
156032798 GT-AG 0 1.000000099473604e-05 44 rna175.p1 28131448 13 398835 398878 Planoprotostelium fungivorum 1890364 TTG|GTGATGGTGT...TGCTTCTCACTT/CTGCTTCTCACT...TCCAG|AAA 1 1 80.526
156032799 GT-AG 0 1.000000099473604e-05 45 rna175.p1 28131448 14 399004 399048 Planoprotostelium fungivorum 1890364 GAT|GTAAGATCGT...ATGATCTCATCC/CATGATCTCATC...CACAG|GAG 0 1 86.096

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