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

✎ 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
174593783 GT-AG 0 0.0010147744856571 647 rna-NZN594_LOCUS1238 31341658 1 6739768 6740414 Rotaria sp. silwood1 2762511 CTA|GTAAATCTTG...TTCTTTTTATTG/TTTCTTTTTATT...AAAAG|ATT 1 1 0.33
174593784 GT-AG 0 0.0003937545728773 64 rna-NZN594_LOCUS1238 31341658 2 6741381 6741444 Rotaria sp. silwood1 2762511 CTT|GTAAATTAAT...CTTTTTTTAAAT/AGTTTTCTTATT...TCTAG|CTT 1 1 24.854
174593785 GT-AG 0 1.000000099473604e-05 69 rna-NZN594_LOCUS1238 31341658 3 6742367 6742435 Rotaria sp. silwood1 2762511 TTG|GTAAATACAC...TATTCTTTTATG/ATTACGTTTATT...TAAAG|GAC 2 1 48.261
174593786 GT-AG 0 1.000000099473604e-05 2433 rna-NZN594_LOCUS1238 31341658 4 6742724 6745156 Rotaria sp. silwood1 2762511 TGG|GTAAGAGGAT...ATTTTTTTAATG/ATTTTTTTAATG...TATAG|ATC 2 1 55.572
174593787 GT-AG 0 0.0061496463618048 63 rna-NZN594_LOCUS1238 31341658 5 6745378 6745440 Rotaria sp. silwood1 2762511 TTT|GTAAATTTTA...TTTTTCTTTTTT/TTTTTGTTAAAT...TATAG|ATT 1 1 61.183
174593788 GT-AG 0 1.000000099473604e-05 64 rna-NZN594_LOCUS1238 31341658 6 6745614 6745677 Rotaria sp. silwood1 2762511 AAA|GTAAAAAAGA...TATTTTTTGAAA/TATTTTTTGAAA...TTTAG|CCA 0 1 65.575
174593789 GT-AG 0 0.0866653976268164 58 rna-NZN594_LOCUS1238 31341658 7 6745879 6745936 Rotaria sp. silwood1 2762511 TTA|GTATGTATTT...ATTCTTTTATTT/TTATATTTTATA...TATAG|CCG 0 1 70.678
174593790 GT-AG 0 7.259479637175381e-05 63 rna-NZN594_LOCUS1238 31341658 8 6746103 6746165 Rotaria sp. silwood1 2762511 TTG|GTTTGTTAAT...CAAATTTTATTA/CCAAATTTTATT...TATAG|ATA 1 1 74.892
174593791 GT-AG 0 4.464909228582768e-05 977 rna-NZN594_LOCUS1238 31341658 9 6746339 6747315 Rotaria sp. silwood1 2762511 TTA|GTAAGTTAAA...ACAGTTTTGATT/TGTTTCCTCATT...TGTAG|GTC 0 1 79.284
174593792 GT-AG 0 1.000000099473604e-05 62 rna-NZN594_LOCUS1238 31341658 10 6747405 6747466 Rotaria sp. silwood1 2762511 TTT|GTAAGATAAA...ACTTTGTTGATT/ACTTTGTTGATT...TATAG|ATT 2 1 81.544
174593793 GT-AG 0 0.0032371149696344 69 rna-NZN594_LOCUS1238 31341658 11 6747625 6747693 Rotaria sp. silwood1 2762511 GTC|GTATGTAGAA...GTTTTCTTTGTT/TTGTTTTTCATT...AAAAG|CTG 1 1 85.555
174593794 GT-AG 0 1.000000099473604e-05 61 rna-NZN594_LOCUS1238 31341658 12 6747863 6747923 Rotaria sp. silwood1 2762511 TCC|GTAATAAATT...TCGATTTTATAT/TTCGATTTTATA...TTTAG|AAC 2 1 89.845
174593795 GT-AG 0 1.000000099473604e-05 69 rna-NZN594_LOCUS1238 31341658 13 6748279 6748347 Rotaria sp. silwood1 2762511 CAG|GTGAATTCTT...TTTTTCTAATTT/TTTTTTCTAATT...TATAG|TTT 0 1 98.858

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