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

✎ 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
190849879 GT-AG 0 0.0003961694231649 1753 rna-XM_013262845.1 34091313 1 1337285 1339037 Stomoxys calcitrans 35570 CGA|GTAAGTTTTT...TACATTTTATTC/ATTTTATTCATA...TTCAG|TTT 2 1 6.225
190849880 GT-AG 0 2.272051546870656e-05 62 rna-XM_013262845.1 34091313 2 1339178 1339239 Stomoxys calcitrans 35570 TTT|GTAAGTATTC...CAAAATTTATTT/TCAAAATTTATT...TACAG|ATT 1 1 10.518
190849881 GT-AG 0 1.000000099473604e-05 66 rna-XM_013262845.1 34091313 3 1339389 1339454 Stomoxys calcitrans 35570 GAG|GTAGGTCTGA...CCTGTCTTGTAT/TTTATAGTTACA...TGTAG|CAT 0 1 15.087
190849882 GT-AG 0 1.000000099473604e-05 56 rna-XM_013262845.1 34091313 4 1339598 1339653 Stomoxys calcitrans 35570 CAA|GTAAGAATTT...CTCTTTTTATTT/ACTCTTTTTATT...ACTAG|AAC 2 1 19.473
190849883 GT-AG 0 0.0005055085181333 72 rna-XM_013262845.1 34091313 5 1339741 1339812 Stomoxys calcitrans 35570 TGA|GTAAGTTCTT...TTGGTTTTATTT/ATTGGTTTTATT...TTTAG|CCA 2 1 22.14
190849884 GT-AG 0 0.0009464404933957 121 rna-XM_013262845.1 34091313 6 1340646 1340766 Stomoxys calcitrans 35570 AAG|GTACTTTGTT...TTGTTCTAAACT/CTTGTTCTAAAC...TATAG|ATG 1 1 47.685
190849885 GT-AG 0 7.393356953842946e-05 122 rna-XM_013262845.1 34091313 7 1340770 1340891 Stomoxys calcitrans 35570 ATG|GTATGTAATG...CAAATGTTAAAT/CAAATGTTAAAT...TCTAG|GAA 1 1 47.777
190849886 GT-AG 0 0.0001010615414952 61 rna-XM_013262845.1 34091313 8 1341477 1341537 Stomoxys calcitrans 35570 TAA|GTAAGTTCTT...GATATCTTCACA/AAACTTTTCATA...GCTAG|ATA 1 1 65.716
190849887 GT-AG 0 0.000149928867652 73 rna-XM_013262845.1 34091313 9 1342121 1342193 Stomoxys calcitrans 35570 AGG|GTAAATTAGA...ATAATCTTAACT/CCGATTTTTATT...CGAAG|CAT 2 1 83.594
190849888 GT-AG 0 1.000000099473604e-05 53 rna-XM_013262845.1 34091313 10 1342392 1342444 Stomoxys calcitrans 35570 AAG|GTAGTTATAG...TGGAGCTTAAAT/TAAATATTGATA...TTCAG|ATC 2 1 89.666

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