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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
346878 GT-AG 0 1.000000099473604e-05 651 rna-XM_022224882.1 76483 1 1238514 1239164 Acanthaster planci 133434 CTC|GTAAAGCTCA...AAATCCATGATT/CCATGATTTATG...TTCAG|GAG 0 1 2.222
346879 GT-AG 0 0.0002009036983628 399 rna-XM_022224882.1 76483 2 1239273 1239671 Acanthaster planci 133434 AAG|GTATTGTACA...TATCTCTGATCT/GTATCTCTGATC...TACAG|ATG 0 1 6.667
346880 GT-AG 0 1.923310386716649e-05 208 rna-XM_022224882.1 76483 3 1239885 1240092 Acanthaster planci 133434 AAC|GTAATTTAGA...TCACCATTCACT/TCACCATTCACT...TTCAG|ATG 0 1 15.432
346881 GT-AG 0 1.132769071407157e-05 171 rna-XM_022224882.1 76483 4 1240219 1240389 Acanthaster planci 133434 GAG|GTAATTTGTT...TAATTTTTAAGG/ATTGTTGTGATG...GGCAG|GTT 0 1 20.617
346882 GT-AG 0 1.000000099473604e-05 377 rna-XM_022224882.1 76483 5 1240498 1240874 Acanthaster planci 133434 AAT|GTAAGGATAT...CATACTTTACTG/ACTTTACTGACC...TGCAG|TTC 0 1 25.062
346883 GT-AG 0 1.000000099473604e-05 754 rna-XM_022224882.1 76483 6 1241063 1241816 Acanthaster planci 133434 ACC|GTGAGTAAAA...ATTTGTTTATAC/TATTTGTTTATA...CTCAG|GTA 2 1 32.798
346884 GT-AG 0 1.000000099473604e-05 462 rna-XM_022224882.1 76483 7 1241954 1242415 Acanthaster planci 133434 TTG|GTAAGTTTAG...TGTCTCTTTGTA/TTGTATCTCACC...TACAG|TGG 1 1 38.436
346885 GT-AG 0 1.000000099473604e-05 357 rna-XM_022224882.1 76483 8 1242434 1242790 Acanthaster planci 133434 GAC|GTAAGTCAGC...TCCAGCATAACC/CATAACCTGACG...TCCAG|GAC 1 1 39.177
346886 GT-AG 0 0.0003882208790578 158 rna-XM_022224882.1 76483 9 1243227 1243384 Acanthaster planci 133434 CGC|GTAAGTTCTT...CTCTATTTAACA/CATTTGTTTATG...CCCAG|CTT 2 1 57.119
346887 GT-AG 0 1.000000099473604e-05 376 rna-XM_022224882.1 76483 10 1243581 1243956 Acanthaster planci 133434 GAG|GTAGGTAGAC...CGATCTTTGACG/CATTTCCTAACT...AACAG|GAG 0 1 65.185
346888 GT-AG 0 1.000000099473604e-05 377 rna-XM_022224882.1 76483 11 1244137 1244513 Acanthaster planci 133434 AAA|GTAAGTCAAC...TTATTGTTAACA/TTATTGTTAACA...TTCAG|AGA 0 1 72.593
346889 GT-AG 0 1.000000099473604e-05 209 rna-XM_022224882.1 76483 12 1244553 1244761 Acanthaster planci 133434 TCG|GTAAGTGACC...TTTTTCTTGTTT/TCTTGTTTCATT...TGCAG|CGA 0 1 74.198
346890 GT-AG 0 1.000000099473604e-05 447 rna-XM_022224882.1 76483 13 1244884 1245330 Acanthaster planci 133434 GAG|GTGAGGCTAG...AATTCGTAGACT/TTTGCACTCAGC...TGCAG|ATA 2 1 79.218

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