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)

13 rows where transcript_id = 32241369

✎ 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
180024583 GT-AG 0 1.000000099473604e-05 36 rna-XM_035733921.1 32241369 1 706750 706785 Schistosoma haematobium 6185 TCT|GTAAGTAGTT...TTGATCGAATCA/GATCGAATCAAG...ATTAG|GAA 0 1 4.688
180024584 GT-AG 0 1.000000099473604e-05 78 rna-XM_035733921.1 32241369 2 706581 706658 Schistosoma haematobium 6185 CGG|GTGAGTCAAG...ATATTTTTATTT/TTTTTATTTATT...TGTAG|AAG 1 1 8.637
180024585 GT-AG 0 2.026759080556707e-05 322 rna-XM_035733921.1 32241369 3 706143 706464 Schistosoma haematobium 6185 GTG|GTAAGTTGCA...ATCGTTTTAATA/TAATTTTTTACC...CATAG|CCC 0 1 13.672
180024586 GT-AG 0 1.000000099473604e-05 1543 rna-XM_035733921.1 32241369 4 704455 705997 Schistosoma haematobium 6185 AAG|GTGAGTTCAT...TGTTTCTTAACA/TTTGTACTAATT...TTCAG|AGG 1 1 19.965
180024587 GT-AG 0 1.000000099473604e-05 595 rna-XM_035733921.1 32241369 5 703769 704363 Schistosoma haematobium 6185 TAA|GTAGTAAGTC...TTTACTTTCACT/TTTACTTTCACT...TTCAG|CCG 2 1 23.915
180024588 GT-AG 0 1.000000099473604e-05 8134 rna-XM_035733921.1 32241369 6 695503 703636 Schistosoma haematobium 6185 AAG|GTTTGTCAGT...ATTTTATTAATA/ATTTTATTAATA...TTCAG|TTT 2 1 29.644
180024589 GT-AG 0 1.000000099473604e-05 1647 rna-XM_035733921.1 32241369 7 693715 695361 Schistosoma haematobium 6185 CAG|GTAATGAGTT...TACTTTTTCATG/TACTTTTTCATG...TATAG|AGA 2 1 35.764
180024590 GT-AG 0 0.0083638615889905 1922 rna-XM_035733921.1 32241369 8 691638 693559 Schistosoma haematobium 6185 AAG|GTATGTTTTT...TTCATCTTCACC/AATGATTTCATC...CATAG|ATT 1 1 42.491
180024591 GT-AG 0 1.000000099473604e-05 1549 rna-XM_035733921.1 32241369 9 689886 691434 Schistosoma haematobium 6185 CAG|GTTAGTGAGA...ATCATTTTAATG/ATTTTATTCATT...TTTAG|TCC 0 1 51.302
180024592 GT-AG 0 1.000000099473604e-05 1578 rna-XM_035733921.1 32241369 10 688143 689720 Schistosoma haematobium 6185 TTG|GTAAGATTTT...TCATTTTTATTA/TTTTTATTCATT...TTTAG|CCG 0 1 58.464
180024593 GT-AG 0 1.000000099473604e-05 1707 rna-XM_035733921.1 32241369 11 685980 687686 Schistosoma haematobium 6185 CAA|GTAAGATTTA...TTTTTCTGGATA/AATTTTCTCATT...TATAG|GCT 0 1 78.255
180024594 GT-AG 0 1.000000099473604e-05 711 rna-XM_035733921.1 32241369 12 684949 685659 Schistosoma haematobium 6185 AAA|GTGAGTTTTT...TTCTCCTTCTTT/TTCTTCCTCACC...TGTAG|AAC 2 1 92.144
180024595 GT-AG 0 7.511829371333548e-05 978 rna-XM_035733921.1 32241369 13 683872 684849 Schistosoma haematobium 6185 TAA|GTAGTTAGTC...CTGTCCTAATCA/ACTGTCCTAATC...CCCAG|GTT 2 1 96.441

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