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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
157404433 GT-AG 0 5.29928836638364e-05 487 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 1 56502 56988 Podiceps cristatus 345573 AAA|GTAAGTTTTT...GTTTGTTTATTG/TGTTTGTTTATT...TGTAG|GAA 0 1 4.894
157404434 GT-AG 0 2.950913973549418e-05 1851 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 2 54557 56407 Podiceps cristatus 345573 CTT|GTAAGTATCA...TGGTGTTTAATC/TGGTGTTTAATC...TCTAG|TGG 1 1 10.005
157404435 GT-AG 0 1.000000099473604e-05 20100 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 3 34384 54483 Podiceps cristatus 345573 ACT|GTAAGATGTG...GGATTATTGAAT/ATTGAATTGACA...TATAG|GAT 2 1 13.975
157404436 GT-AG 0 1.000000099473604e-05 2842 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 4 31427 34268 Podiceps cristatus 345573 ATA|GTAAGTACCT...TGGGTTTTACTA/TTGGGTTTTACT...TCTAG|TGG 0 1 20.228
157404437 GT-AG 0 4.32930795902412e-05 2929 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 5 28341 31269 Podiceps cristatus 345573 ATG|GTGTGTTATA...TGTTTTTTTGCT/TTTAATTCCATT...TCTAG|ATA 1 1 28.766
157404438 GT-AG 0 0.0174901721350819 4738 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 6 23438 28175 Podiceps cristatus 345573 CAG|GTATTTTGTT...TTTTTTTTGAAC/TTTTTTTTGAAC...CTTAG|GTA 1 1 37.738
157404439 GT-AG 0 1.000000099473604e-05 1178 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 7 22123 23300 Podiceps cristatus 345573 GAG|GTAAGAAGGC...GTTTCATTAAAG/TTATGTTTCATT...TCAAG|GTA 0 1 45.188
157404440 GT-AG 0 1.000000099473604e-05 565 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 8 21377 21941 Podiceps cristatus 345573 ATG|GTAAGAGCAT...ATTTCATAAGCT/CGAGTGTTCACA...TTCAG|ACC 1 1 55.03
157404441 GT-AG 0 0.000310131831085 35 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 9 21195 21229 Podiceps cristatus 345573 GTG|GTATGGTACT...TTTATGTTAGTT/TGTTAGTTTACA...CTCAG|TTA 1 1 63.023
157404442 GT-AG 0 0.0002731419990798 1434 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 10 19733 21166 Podiceps cristatus 345573 GTT|GTAAATTTCA...AACATCTAACAA/AAACATCTAACA...ATGAG|GAA 2 1 64.546
157404443 GT-AG 0 0.0273408215707339 4379 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 11 15265 19643 Podiceps cristatus 345573 CAT|GTACACTGCC...TTGGCATTAAAA/TTGGCATTAAAA...TTCAG|ATG 1 1 69.386
157404444 GT-AG 0 0.0001091686490708 12960 rna-gnl|WGS:JMFS|mrna.N338_10256 28321225 12 1973 14932 Podiceps cristatus 345573 GAA|GTAGGCCACT...ATATTGTTGACT/ATATTGTTGACT...CACAG|GAC 0 1 87.439

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