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

✎ 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
180024165 GT-AG 0 1.000000099473604e-05 45 rna-XM_035733908.1 32241304 1 1297537 1297581 Schistosoma haematobium 6185 TAA|GTGAGTACTG...TATTTTGTGACG/TATTTTGTGACG...TGTAG|AAT 2 1 7.16
180024166 GT-AG 0 8.605218579679671e-05 11593 rna-XM_035733908.1 32241304 2 1285763 1297355 Schistosoma haematobium 6185 AAT|GTAAGTCTTT...GTTATTTTATCA/CCTTTTCTCATT...TTCAG|ACT 0 1 13.273
180024167 GT-AG 0 1.000000099473604e-05 2001 rna-XM_035733908.1 32241304 3 1283627 1285627 Schistosoma haematobium 6185 AAA|GTAAGTAAAT...ATTTTTTTAAAA/ATTTTTTTAAAA...TTTAG|GTA 0 1 17.832
180024168 GT-AG 0 5.848796975860589e-05 608 rna-XM_035733908.1 32241304 4 1282901 1283508 Schistosoma haematobium 6185 ATG|GTAAGTTATT...ATTACTTTAATG/ATTACTTTAATG...TTTAG|GTA 1 1 21.817
180024169 GT-AG 0 0.9006384868848696 2021 rna-XM_035733908.1 32241304 5 1280611 1282631 Schistosoma haematobium 6185 ACA|GTATGTTTTT...ATTATCTTACCT/TATTATCTTACC...TTTAG|GTA 0 1 30.902
180024170 GT-AG 0 1.000000099473604e-05 1145 rna-XM_035733908.1 32241304 6 1279267 1280411 Schistosoma haematobium 6185 CAG|GTAATATTAC...TCATCTTTAATT/ATTTTTGTAATT...TATAG|GTG 1 1 37.622
180024171 GT-AG 0 0.0004078531643844 1359 rna-XM_035733908.1 32241304 7 1277663 1279021 Schistosoma haematobium 6185 CAA|GTAAGCAATT...ATTTTCTTATCA/TATTTTCTTATC...TTTAG|TTG 0 1 45.897
180024172 GT-AG 0 1.000000099473604e-05 2919 rna-XM_035733908.1 32241304 8 1274514 1277432 Schistosoma haematobium 6185 AAA|GTGAGTAATG...CACTACTTAATT/ATTATGCTCACA...TTTAG|GAA 2 1 53.664
180024173 GT-AG 0 9.862074346496255e-05 4122 rna-XM_035733908.1 32241304 9 1270130 1274251 Schistosoma haematobium 6185 CAA|GTAAGTTTAT...TTACTTTTAATT/TTTATTTTTACT...TGTAG|GTG 0 1 62.513
180024174 GT-AG 0 1.000000099473604e-05 5541 rna-XM_035733908.1 32241304 10 1264360 1269900 Schistosoma haematobium 6185 TTG|GTAAGTGAAA...CACTCCTTATTT/AAATCGCTCACT...ACAAG|GTG 1 1 70.247
180024175 GT-AG 0 1.000000099473604e-05 1536 rna-XM_035733908.1 32241304 11 1262567 1264102 Schistosoma haematobium 6185 ATG|GTAAGTAATC...ATTTTTTTAAAA/ATTTTTTTAAAA...CATAG|ATT 0 1 78.926
180024176 GT-AG 0 2.9040687051020564e-05 1777 rna-XM_035733908.1 32241304 12 1260520 1262296 Schistosoma haematobium 6185 TGG|GTAAATAGTA...TTCATCTTATCG/TTTCATCTTATC...TACAG|ACT 0 1 88.045
180024177 GT-AG 0 2.5470102985810355e-05 1040 rna-XM_035733908.1 32241304 13 1259247 1260286 Schistosoma haematobium 6185 AAG|GTAATTTCTA...GTTTATTTATTT/GGTTTATTTATT...ATTAG|ATA 2 1 95.914

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