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

✎ 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
148388630 GT-AG 0 0.00816172736849 49 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 1 99426 99474 Pelomyxa schiedti 1580589 AGG|GTATGTTGCA...GTCACCTTAAAC/CGTGACGTCACC...TGCAG|GAG 0 1 11.15
148388631 GT-AG 0 1.000000099473604e-05 44 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 2 99546 99589 Pelomyxa schiedti 1580589 CAG|GTGCTGTCTC...CGAATCTTATTT/CTTTTTTTCAGC...TATAG|GTT 2 1 15.273
148388632 GT-AG 0 0.0006225060285172 42 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 3 99682 99723 Pelomyxa schiedti 1580589 AAG|GTATGGTTGT...CTATTGTTGACC/CTATTGTTGACC...TGAAG|ATA 1 1 20.616
148388633 GT-AG 0 1.000000099473604e-05 43 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 4 99829 99871 Pelomyxa schiedti 1580589 CAG|GTTAGATGAT...TCTGCTTTAACA/TTAACACTCACC...CAAAG|GGT 1 1 26.713
148388634 GT-AG 0 0.004702229928499 46 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 5 99940 99985 Pelomyxa schiedti 1580589 CAA|GTATTTCCCT...TTTTTTTTGTTT/TTTTTGCCCAAA...GTTAG|GTT 0 1 30.662
148388635 GT-AG 0 1.000000099473604e-05 49 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 6 100430 100478 Pelomyxa schiedti 1580589 AAG|GTTATTTTTT...TATCTTTGAATG/GGAAAACTAAAC...TGTAG|GCT 0 1 56.446
148388636 GT-AG 0 1.000000099473604e-05 44 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 7 100558 100601 Pelomyxa schiedti 1580589 CAG|GTTATTTCAA...CAGTGCATAATT/TGCATAATTATT...GAAAG|GAA 1 1 61.034
148388637 GT-AG 0 0.0860896569075358 45 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 8 100652 100696 Pelomyxa schiedti 1580589 ACT|GTATGTTCTC...TTTTTTGTAACA/TTTTTTGTAACA...TACAG|GGT 0 1 63.937
148388638 GT-AG 0 0.0034593165384469 45 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 9 100831 100875 Pelomyxa schiedti 1580589 AAG|GTACCATATA...GGCCTATTAATC/GGCCTATTAATC...AAAAG|CGG 2 1 71.719
148388639 GT-AG 0 1.000000099473604e-05 47 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 10 100949 100995 Pelomyxa schiedti 1580589 AAA|GTGTGTACTT...TTATTATTATTC/GCCTGTCTCATT...TATAG|GTT 0 1 75.958
148388640 GT-AG 0 0.0001352088707032 50 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 11 101086 101135 Pelomyxa schiedti 1580589 CTG|GTACACAGCT...GATAGTTTATCT/GTTTATCTAATG...ACAAG|GAC 0 1 81.185
148388641 GT-AG 0 0.0028747667592463 51 rna-gnl|WGS:JAHLWZ|Pelo_57_1 26741180 12 101277 101327 Pelomyxa schiedti 1580589 AAA|GTACTCTCTA...AAACCCTCTTTT/GACAAGTTGAAA...CCCAG|GTC 0 1 89.373

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