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)

12 rows where transcript_id = 32191428

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
179733829 GT-AG 0 1.000000099473604e-05 350080 rna-XM_047135958.1 32191428 1 1161137985 1161488064 Schistocerca americana 7009 TCC|GTGAGTACAA...GATGCATTAAGT/ACTCGGCTGACT...TGCAG|CGG 1 1 5.218
179733830 GT-AG 0 1.000000099473604e-05 93716 rna-XM_047135958.1 32191428 2 1161488346 1161582061 Schistocerca americana 7009 ACC|GTGAGTACAC...GCGCCTGTGATG/CCTGTGATGACG...TGCAG|CCG 0 1 10.293
179733831 GT-AG 0 1.000000099473604e-05 7956 rna-XM_047135958.1 32191428 3 1161582221 1161590176 Schistocerca americana 7009 ACG|GTGAGCTGAC...CTGGCGGTGACG/CTGGCGGTGACG...CACAG|GTG 0 1 13.164
179733832 GC-CG 0 1.000000099473604e-05 8643 rna-XM_047135958.1 32191428 4 1161590291 1161598933 Schistocerca americana 7009 GAG|GCGGCCGGGG...GCGTTTTTGTTG/TGTTGTTGCAGG...CCTCG|GCG 0 1 15.222
179733833 GT-AG 0 1.4026690944465826e-05 7720 rna-XM_047135958.1 32191428 5 1161599283 1161607002 Schistocerca americana 7009 CCG|GTATGTCAAG...CGCCCCTCTGCT/CGGCGGCTGACG...TGCAG|CGT 1 1 21.524
179733834 GT-AG 0 9.684191906416336e-05 3802 rna-XM_047135958.1 32191428 6 1161607154 1161610955 Schistocerca americana 7009 CAG|GTAAGCCTTC...CCCCCCTTACCC/TACAGTATGACT...AGCAG|GTC 2 1 24.251
179733835 GT-AG 0 1.000000099473604e-05 1881 rna-XM_047135958.1 32191428 7 1161611344 1161613224 Schistocerca americana 7009 AAG|GTGAGCCATA...TTAGTTTTGAGT/TTAGTTTTGAGT...TGCAG|GGC 0 1 31.257
179733836 GT-AG 0 1.000000099473604e-05 5334 rna-XM_047135958.1 32191428 8 1161613437 1161618770 Schistocerca americana 7009 CAG|GTATGGCTTC...TCCCATTTAAGG/AAACTTCCCATT...TGCAG|GTC 2 1 35.085
179733837 GT-AG 0 2.52331370076142e-05 6829 rna-XM_047135958.1 32191428 9 1161619105 1161625933 Schistocerca americana 7009 AAG|GTACATTGTC...TACAACATAACA/TATATGCTGATT...TGCAG|GTT 0 1 41.116
179733838 GT-AG 0 1.000000099473604e-05 8323 rna-XM_047135958.1 32191428 10 1161627211 1161635533 Schistocerca americana 7009 ATG|GTAGAGGCAC...TTTTTCTTTTTT/GTGTTGGTGAAT...TCAAG|GGC 2 1 64.175
179733839 GT-AG 0 1.000000099473604e-05 2522 rna-XM_047135958.1 32191428 11 1161635562 1161638083 Schistocerca americana 7009 TGG|GTAAGTATGA...TGACTTTTATTT/CTTTTATTTACT...TGCAG|CCT 0 1 64.68
179733840 GT-AG 0 0.0150196094693965 83 rna-XM_047135958.1 32191428 12 1161638103 1161638185 Schistocerca americana 7009 AAA|GTACACATTA...AGCTTTTTAAAA/AAAATGTTAATT...ACTAG|GAC 1 1 65.023

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