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)

11 rows where transcript_id = 17285684

✎ 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
92354263 GT-AG 0 1.000000099473604e-05 67 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 1 1158028 1158094 Hesseltinella vesiculosa 101127 AAG|GTAAAAACTA...ATTGTCTTTTTG/TGTTTACTGACA...AAAAG|AAT 0 1 3.051
92354264 GT-AG 0 4.6785503200089405e-05 60 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 2 1157813 1157872 Hesseltinella vesiculosa 101127 AAA|GTAAGCATCA...AGGAACTTATCT/GAGGAACTTATC...TATAG|GTA 2 1 7.556
92354265 GT-AG 0 9.017415429973424e-05 59 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 3 1157485 1157543 Hesseltinella vesiculosa 101127 CTG|GTAACACGCT...TTTTTTTTAGCT/ATTTTGCTCATT...TGTAG|GGG 1 1 15.373
92354266 GT-AG 0 7.25134704520954e-05 60 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 4 1157307 1157366 Hesseltinella vesiculosa 101127 AAG|GTAAGCTTAA...CTTTCTATGATC/CCAGTGCTCACG...TCTAG|TTC 2 1 18.803
92354267 GT-AG 0 1.000000099473604e-05 59 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 5 1157139 1157197 Hesseltinella vesiculosa 101127 AAG|GTTAGAAAAG...TGCTCATTATCT/TGCTTGCTCATT...ATCAG|GCC 0 1 21.97
92354268 GT-AG 0 0.0001156903983767 75 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 6 1156693 1156767 Hesseltinella vesiculosa 101127 ACT|GTAAGCAACC...TTTTTTTTCACT/TTTTTTTTCACT...ATTAG|GGC 2 1 32.752
92354269 GT-AG 0 1.000000099473604e-05 72 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 7 1156287 1156358 Hesseltinella vesiculosa 101127 CAG|GTAAAGTCAA...TTTTTCTTTTTC/GTGGAAATGACC...TATAG|CCT 0 1 42.459
92354270 GT-AG 0 1.2332418552908166e-05 79 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 8 1155428 1155506 Hesseltinella vesiculosa 101127 AAG|GTAAGCTCCG...TCCCATTTATTC/CTCCCATTTATT...TTTAG|CTA 0 1 65.126
92354271 GT-AG 0 1.000000099473604e-05 54 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 9 1155293 1155346 Hesseltinella vesiculosa 101127 AAG|GTAAGACGGA...GGACCCTGGGCT/CCTGGGCTCATG...GATAG|TCG 0 1 67.48
92354272 GT-AG 0 1.000000099473604e-05 71 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 10 1155142 1155212 Hesseltinella vesiculosa 101127 AAC|GTAAGTGATG...TTTTTTTTTTCT/GAAAAGCTCAGG...CCTAG|TCA 2 1 69.805
92354273 GT-AG 0 1.000000099473604e-05 61 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1314675 17285684 11 1154367 1154427 Hesseltinella vesiculosa 101127 TCG|GTAAAGAAAA...ACTTTTTTATTT/GACTTTTTTATT...AAAAG|TGG 2 1 90.555

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