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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
197657669 GT-AG 0 1.593784199944692e-05 1102 rna-XM_007050618.2 35103516 1 30119365 30120466 Theobroma cacao 3641 CAG|GTCCGTTTTC...TTTGTTTTACTG/ATTTGTTTTACT...GACAG|GGT 2 1 7.048
197657670 GT-AG 0 0.0001590768366354 240 rna-XM_007050618.2 35103516 2 30119014 30119253 Theobroma cacao 3641 AAA|GTAAGCTCCA...TAAGTATTAACG/TAAGTATTAACG...TACAG|GAC 2 1 9.832
197657671 GT-AG 0 1.000000099473604e-05 239 rna-XM_007050618.2 35103516 3 30118427 30118665 Theobroma cacao 3641 CAT|GTAAGAACTC...ATTCTGTTACTT/ATGTGACTAACA...CTTAG|GCC 2 1 18.56
197657672 GT-AG 0 0.0004100414479169 102 rna-XM_007050618.2 35103516 4 30118005 30118106 Theobroma cacao 3641 CTG|GTACTTGTTA...TTTCTTTTATCA/ATTTCTTTTATC...TGCAG|GTT 1 1 26.586
197657673 GT-AG 0 1.000000099473604e-05 596 rna-XM_007050618.2 35103516 5 30117317 30117912 Theobroma cacao 3641 AGG|GTAAGAATTT...ATTTGTTTAATC/ATTTGTTTAATC...CATAG|GAA 0 1 28.894
197657674 GT-AG 0 0.000677052154051 530 rna-XM_007050618.2 35103516 6 30116426 30116955 Theobroma cacao 3641 GCT|GTAAGCACTA...TTTCTTTTATAA/AATGTTTTCAAT...TGCAG|CTG 1 1 37.948
197657675 GT-AG 0 0.0004036757359876 1120 rna-XM_007050618.2 35103516 7 30115098 30116217 Theobroma cacao 3641 TAG|GTATGCAGCA...TGAATTTAAGCT/TTTAAGCTCATG...GGAAG|CTT 2 1 43.165
197657676 GT-AG 0 1.000000099473604e-05 147 rna-XM_007050618.2 35103516 8 30114836 30114982 Theobroma cacao 3641 CAG|GTAATTTGAC...AATTTTTTATTT/TTTTATTTTATT...TGCAG|GAA 0 1 46.05
197657677 GT-AG 0 0.0010793197018536 396 rna-XM_007050618.2 35103516 9 30114278 30114673 Theobroma cacao 3641 ATG|GTAGGTTTTA...TGTTCTTTGATT/TGTTCTTTGATT...GTCAG|GTT 0 1 50.113
197657678 GT-AG 0 2.274816286565931e-05 553 rna-XM_007050618.2 35103516 10 30113064 30113616 Theobroma cacao 3641 CAG|GTTTATCCTT...ATTTTTTTGCCT/TGCAACATAATT...CTTAG|GAC 1 1 66.692
197657679 GT-AG 0 0.0003942857225349 424 rna-XM_007050618.2 35103516 11 30112433 30112856 Theobroma cacao 3641 TAG|GTATTACTTT...AATCTTTTATTT/CAATCTTTTATT...TGCAG|GTG 1 1 71.884

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