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

✎ 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
190421053 GT-AG 0 1.000000099473604e-05 6450 rna-XM_035365240.1 34009346 1 520543 526992 Stegodyphus dumicola 202533 AGA|GTAAGGAACG...TAGTAATTGATG/TGTCATCTTATT...TTCAG|TTT 0 1 11.485
190421054 GT-AG 0 7.165078301926513e-05 2799 rna-XM_035365240.1 34009346 2 517671 520469 Stegodyphus dumicola 202533 TAT|GTAAGTTGCA...AGTTTCTTTTCA/TTTCTTTTCATC...AACAG|ATA 1 1 18.301
190421055 GT-AG 0 0.0006533243122231 4920 rna-XM_035365240.1 34009346 3 512679 517598 Stegodyphus dumicola 202533 AAT|GTAAGTTATT...GTTTTCTTGATT/GTTTTCTTGATT...TTTAG|GTA 1 1 25.023
190421056 GT-AG 0 2.019038008093485e-05 7685 rna-XM_035365240.1 34009346 4 504891 512575 Stegodyphus dumicola 202533 AAG|GTAAGCCATT...ATTTTTTTAAAA/GAAATTTTTATT...TCCAG|CAC 2 1 34.641
190421057 GT-AG 0 0.0004628335420171 978 rna-XM_035365240.1 34009346 5 503828 504805 Stegodyphus dumicola 202533 CAA|GTAAATATTT...TTTTTTTTAAAT/TTTTTTTTAAAT...CCCAG|ATT 0 1 42.577
190421058 GT-AG 0 0.0001854985061572 139 rna-XM_035365240.1 34009346 6 503621 503759 Stegodyphus dumicola 202533 TAG|GTATGTAGAG...TTTGTTTTACTT/GTTTTACTTATT...CTTAG|GGA 2 1 48.926
190421059 GT-AG 0 0.0001097362537554 2187 rna-XM_035365240.1 34009346 7 501381 503567 Stegodyphus dumicola 202533 TTA|GTAAGTATTT...ATGTTATTAATT/ATGTTATTAATT...ACCAG|CTG 1 1 53.875
190421060 GT-AG 0 1.000000099473604e-05 4841 rna-XM_035365240.1 34009346 8 496476 501316 Stegodyphus dumicola 202533 ATG|GTAAGACCTT...TGTATATTATTT/TTAAATCTCATA...TCCAG|GTA 2 1 59.851
190421061 GT-AG 0 2.789153470076157e-05 15853 rna-XM_035365240.1 34009346 9 480563 496415 Stegodyphus dumicola 202533 GTG|GTAAAATTTT...AAAGTTTTAATC/AAAGTTTTAATC...TTCAG|GTC 2 1 65.453
190421062 GT-AG 0 0.2479084135421924 4085 rna-XM_035365240.1 34009346 10 476354 480438 Stegodyphus dumicola 202533 CCA|GTATGTTTTT...AAAATTTTGATT/AAAATTTTGATT...TTCAG|GGT 0 1 77.031
190421063 GT-AG 0 0.0039436488499912 1890 rna-XM_035365240.1 34009346 11 474414 476303 Stegodyphus dumicola 202533 GCC|GTATGTATAT...GAATTTATATTT/TTTATATTTACA...TTCAG|GAA 2 1 81.699
190421064 GT-AG 0 0.055242442999531 3259 rna-XM_035365240.1 34009346 12 471065 474323 Stegodyphus dumicola 202533 CAG|GTAACCATGA...ATATTTTTAATA/ATATTTTTAATA...CTTAG|ACT 2 1 90.103
190421065 GT-AG 0 1.3890805148328737e-05 6970 rna-XM_035365240.1 34009346 13 464042 471011 Stegodyphus dumicola 202533 AAG|GTAATTTTAT...ATATTTATAATT/TGTATATTTATA...TGCAG|CTT 1 1 95.051

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