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

✎ 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
148388230 GT-AG 0 1.2242621738616378e-05 41 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 1 186548 186588 Pelomyxa schiedti 1580589 AAA|GTACTAGTTT...AGCAGCTTATCT/GCTTATCTAATT...ATTAG|GGC 1 1 43.15
148388231 GT-AG 0 9.198817642821445e-05 42 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 2 186414 186455 Pelomyxa schiedti 1580589 TTG|GTGTGCCTCT...AAAACCTGAAAT/GAAATACTAACT...ATTAG|CAA 0 1 46.992
148388232 GT-AG 0 6.429872059071598e-05 202 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 3 186023 186224 Pelomyxa schiedti 1580589 AAG|GTATTACCTT...CGTACTTTACTT/TCGTACTTTACT...ATTAG|GAC 0 1 54.887
148388233 GT-AG 0 0.0006014192584197 46 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 4 185870 185915 Pelomyxa schiedti 1580589 CAG|GTACCACTGG...GAAGTTTTGAAA/TGAAATTTCATC...GATAG|GAC 2 1 59.357
148388234 GT-AG 0 0.0553056098040722 45 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 5 185769 185813 Pelomyxa schiedti 1580589 GTG|GTTGCTTTTC...TTTTTCTTATTT/CTTTTTCTTATT...ATCAG|CAA 1 1 61.696
148388235 GT-AG 0 1.000000099473604e-05 44 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 6 185599 185642 Pelomyxa schiedti 1580589 CTG|GTAAGACTGC...TACACCTCAACA/TTACACCTCAAC...CACAG|TTC 1 1 66.959
148388236 GT-AG 0 1.000000099473604e-05 201 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 7 185285 185485 Pelomyxa schiedti 1580589 ATG|GTGATTATCT...CAGGTCTGAAGC/ACAGGTCTGAAG...GTTAG|CCA 0 1 71.679
148388237 GT-AG 0 1.000000099473604e-05 44 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 8 185162 185205 Pelomyxa schiedti 1580589 TAG|GTTGGTAATA...TGTTCTCTATTA/TCTCTATTAAGC...ATTAG|AGA 1 1 74.979
148388238 GT-AG 0 1.000000099473604e-05 42 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 9 185039 185080 Pelomyxa schiedti 1580589 TAG|GTATTGCCAG...TAGATTTTGCAT/TTTGCATTCAAC...TGTAG|GGT 1 1 78.363
148388239 GT-AG 0 0.000288065682964 174 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 10 184653 184826 Pelomyxa schiedti 1580589 AAG|GTAACTTGTT...TCCCCTCCGACT/CTCCGACTCAAG...CACAG|CAA 0 1 87.218
148388240 GT-AG 0 1.000000099473604e-05 77 rna-gnl|WGS:JAHLWZ|Pelo_90_1 26741141 11 184380 184456 Pelomyxa schiedti 1580589 CAG|GTTAGCAACT...TAATCGTTAAAT/TTTGGACTCACT...TTCAG|CTG 1 1 95.405

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