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

✎ 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
180024118 GT-AG 0 4.8937705333950354e-05 2580 rna-XM_035733903.1 32241299 1 1113350 1115929 Schistosoma haematobium 6185 GAA|GTAAGTTATT...TTATCATTATTA/ATTATTATCATT...TACAG|ATG 1 1 6.921
180024119 GT-AG 0 0.0001383799480753 857 rna-XM_035733903.1 32241299 2 1112358 1113214 Schistosoma haematobium 6185 TGG|GTAAGTTTGA...TTTTCCTTCACT/TTTTTATTCATT...AACAG|CTG 1 1 10.57
180024120 GT-AG 0 1.000000099473604e-05 2022 rna-XM_035733903.1 32241299 3 1110218 1112239 Schistosoma haematobium 6185 TCG|GTAAGTAATT...ACATTTTTATCT/TACATTTTTATC...TTCAG|ATG 2 1 13.76
180024121 GT-AG 0 1.000000099473604e-05 746 rna-XM_035733903.1 32241299 4 1109007 1109752 Schistosoma haematobium 6185 AAG|GTGTGTGCGT...ATTACTTTACCA/GATTACTTTACC...TTTAG|CTA 2 1 26.331
180024122 GT-AG 0 1.000000099473604e-05 4915 rna-XM_035733903.1 32241299 5 1103958 1108872 Schistosoma haematobium 6185 CAA|GTAAGTAGGA...TTATCATTATTA/GAAATTATCATT...TGTAG|ATA 1 1 29.954
180024123 GT-AG 0 2.6734051325494942e-05 6963 rna-XM_035733903.1 32241299 6 1096657 1103619 Schistosoma haematobium 6185 AAG|GTATGTAGAA...CTTTTTTTCATT/CTTTTTTTCATT...TGTAG|ATT 0 1 39.092
180024124 GT-AG 0 1.000000099473604e-05 2831 rna-XM_035733903.1 32241299 7 1093153 1095983 Schistosoma haematobium 6185 GAA|GTAAGTGTTT...TGTTTCTTATGC/TTGTTTCTTATG...TACAG|CTG 1 1 57.286
180024125 GT-AG 0 1.000000099473604e-05 6467 rna-XM_035733903.1 32241299 8 1086549 1093015 Schistosoma haematobium 6185 AAA|GTAAGTCAAC...TTTGTTTTAACC/TTTGTTTTAACC...TATAG|GCA 0 1 60.989
180024126 GT-AG 0 0.0001935409235082 3115 rna-XM_035733903.1 32241299 9 1083290 1086404 Schistosoma haematobium 6185 ACA|GTAAGTATTT...GTAACTTTATTC/ACTTTATTCATG...AAAAG|GGT 0 1 64.882
180024127 GT-AG 0 1.000000099473604e-05 1188 rna-XM_035733903.1 32241299 10 1081703 1082890 Schistosoma haematobium 6185 AGG|GTAAGTATAT...GTTTTTTTATAT/AGTTTTTTTATA...TTTAG|TGT 0 1 75.669
180024128 GT-AG 0 0.0001145226631777 5509 rna-XM_035733903.1 32241299 11 1076011 1081519 Schistosoma haematobium 6185 AAA|GTAAGTTTTA...TTGTTTTTCATA/TTGTTTTTCATA...AATAG|AAT 0 1 80.616
180024129 GT-AG 0 5.507024498233601e-05 1929 rna-XM_035733903.1 32241299 12 1073816 1075744 Schistosoma haematobium 6185 TCG|GTAAGCCATT...TTTCTCTTGCTT/TCTTGCTTCATT...TCTAG|ACA 2 1 87.808
180024130 GT-AG 0 1.000000099473604e-05 6710 rna-XM_035733903.1 32241299 13 1066880 1073589 Schistosoma haematobium 6185 CAG|GTTAGTTCAT...ATTTCCTTTTTT/TTTTTTTGGATG...TATAG|ATC 0 1 93.917

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