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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92353882 GT-AG 0 0.001107015477185 80 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 2 254975 255054 Hesseltinella vesiculosa 101127 CTT|GTACGTCCCT...GTCTTTTTGATA/ACTGAACTTATT...CCTAG|GCT 2 1 1.443
92353883 GT-AG 0 1.000000099473604e-05 76 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 3 254829 254904 Hesseltinella vesiculosa 101127 AAG|GTAAGGAGTA...TTTTTTTTATTA/ATTTTTTTTATT...CGCAG|CTG 0 1 2.135
92353884 GT-AG 0 1.000000099473604e-05 57 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 4 252345 252401 Hesseltinella vesiculosa 101127 GAG|GTAAAATTGA...TTTTTTTTTTTT/AGGCCGCTCACT...TTCAG|GGA 0 1 26.119
92353885 GT-AG 0 0.0001933802630234 93 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 5 251759 251851 Hesseltinella vesiculosa 101127 ATG|GTAAATTTTC...TTTTTCTTTGCA/ATTGTCCTGACG...GATAG|GTT 1 1 30.991
92353886 GT-AG 0 1.000000099473604e-05 65 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 6 250940 251004 Hesseltinella vesiculosa 101127 TAG|GTAATATCAT...CCTCTCTTCACT/CCTCTCTTCACT...TGCAG|CTT 2 1 38.443
92353887 GT-AG 0 3.502412790791649e-05 96 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 7 250337 250432 Hesseltinella vesiculosa 101127 ACT|GTAAGTACAA...ACGTCTTTATCC/AATGACTTCACT...TATAG|GAA 2 1 43.453
92353888 GT-AG 0 1.000000099473604e-05 72 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 8 249431 249502 Hesseltinella vesiculosa 101127 CAG|GTAAATACAT...CATTGCTTACCC/ACATTGCTTACC...GTTAG|CAA 2 1 51.695
92353889 GT-AG 0 7.959245957863802e-05 79 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 9 248505 248583 Hesseltinella vesiculosa 101127 GCT|GTAAGCAGAG...CCTCTCTTACAT/TTACATCTCATA...TTTAG|GAT 0 1 60.065
92353890 GT-AG 0 3.739522551134434e-05 116 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 10 248177 248292 Hesseltinella vesiculosa 101127 GGG|GTAAACAAAT...TTTTTCTTTCCC/TCCCTCCACATC...CCTAG|ACA 2 1 62.16
92353891 GT-AG 0 1.000000099473604e-05 97 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 11 246293 246389 Hesseltinella vesiculosa 101127 AAG|GTAAAAAAAA...TTTTCATTGAAC/TGGATTTTCATT...CATAG|GTC 1 1 79.82
92353892 GT-AG 0 1.000000099473604e-05 103 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 12 244658 244760 Hesseltinella vesiculosa 101127 CAG|GTAGGCAGCC...ATTTCCCTATTT/GTTTTGCTCATC...TGTAG|GCC 0 1 94.96
92356609 GT-AG 0 0.0003484329320632 78 rna-gnl|WGS:MCGT|DM01DRAFT_mRNA1330735 17285649 1 255321 255398 Hesseltinella vesiculosa 101127 ACG|GTATTATTAT...TTGGGTTTATTG/GTTGGGTTTATT...TTTAG|GAA   0 0.593

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