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)

10 rows where transcript_id = 26266735

✎ 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
145335587 GT-AG 0 1.000000099473604e-05 2909 rna-gnl|WGS:JTDE|EG68_00147 26266735 1 370540 373448 Paragonimus skrjabini miyazakii 59628 CAG|GTGACTGATA...AATTCCCTGACA/AATTCCCTGACA...GAAAG|TTT 2 1 4.656
145335588 GT-AG 0 0.002382855081019 4186 rna-gnl|WGS:JTDE|EG68_00147 26266735 2 373464 377649 Paragonimus skrjabini miyazakii 59628 AAG|GTACTTTTAC...AATTTTTTGATT/AATTTTTTGATT...TACAG|AAT 2 1 6.243
145335589 GT-AG 0 4.645407551663524e-05 35 rna-gnl|WGS:JTDE|EG68_00147 26266735 3 377703 377737 Paragonimus skrjabini miyazakii 59628 CCG|GTACGTTATT...TCATACGTAATC/TACGTAATCACA...TTAAG|GTG 1 1 11.852
145335590 GT-AG 0 2.04907538957156e-05 3692 rna-gnl|WGS:JTDE|EG68_00147 26266735 4 377949 381640 Paragonimus skrjabini miyazakii 59628 TAG|GTACGTCATT...TCTACTATAATT/TCTACTATAATT...GTTAG|ATT 2 1 34.18
145335591 GT-AG 0 1.000000099473604e-05 10722 rna-gnl|WGS:JTDE|EG68_00147 26266735 5 381727 392448 Paragonimus skrjabini miyazakii 59628 TGG|GTAAGTATTC...AAATACTTATTG/AGATTTTTCATT...TTTAG|GTG 1 1 43.28
145335592 GT-AG 0 9.58207126756717e-05 6416 rna-gnl|WGS:JTDE|EG68_00147 26266735 6 392587 399002 Paragonimus skrjabini miyazakii 59628 ATG|GTAAACAATT...TCTATTTTAATT/TCTATTTTAATT...TTCAG|GCC 1 1 57.884
145335593 GT-AG 0 9.149189396845316e-05 1883 rna-gnl|WGS:JTDE|EG68_00147 26266735 7 399191 401073 Paragonimus skrjabini miyazakii 59628 TCT|GTGTACGGAA...CACATTTCAATA/TAAGTTTTCAAA...TTCAG|GGA 0 1 77.778
145335594 GT-AG 0 9.490569070424284e-05 2192 rna-gnl|WGS:JTDE|EG68_00147 26266735 8 401148 403339 Paragonimus skrjabini miyazakii 59628 CGC|GTAAGTTCAT...ATTGCCTTCAAC/CTGTATTTCAAC...CCCAG|ATT 2 1 85.608
145335595 GT-AG 0 0.0006479947745729 40 rna-gnl|WGS:JTDE|EG68_00147 26266735 9 403386 403425 Paragonimus skrjabini miyazakii 59628 GAC|GTTTGTATCT...TCGTTCATGATT/TCATGATTTACG...GGAAG|CTT 0 1 90.476
145335596 GT-AG 0 1.000000099473604e-05 430 rna-gnl|WGS:JTDE|EG68_00147 26266735 10 403502 403931 Paragonimus skrjabini miyazakii 59628 TAG|GTAAGTTACC...TTTTCTTTCTTT/ACAATTTTCAAC...TTCAG|GAG 1 1 98.519

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