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

✎ 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
197657743 GT-AG 0 1.000000099473604e-05 88 rna-XM_007050530.2 35103521 1 29649616 29649703 Theobroma cacao 3641 CTG|GTTTGATACT...TTTTCCTTTTTT/ATTTTATTAATT...TGCAG|AAG 1 1 2.508
197657744 GT-AG 0 0.0018650917003932 91 rna-XM_007050530.2 35103521 2 29649216 29649306 Theobroma cacao 3641 CAG|GTATCAAAAT...GATTTATTGATT/GATTTATTGATT...TTCAG|CTT 1 1 10.499
197657745 GT-AG 0 1.000000099473604e-05 102 rna-XM_007050530.2 35103521 3 29648956 29649057 Theobroma cacao 3641 ATG|GTCAGCTTTT...TTTTTTTGGATG/TCTGGGTTTATT...TGCAG|AAG 0 1 14.585
197657746 GT-AG 0 1.000000099473604e-05 105 rna-XM_007050530.2 35103521 4 29648568 29648672 Theobroma cacao 3641 TTG|GTGGGTATTT...TTTTTTTTAATG/TTTTTTTTAATG...TGCAG|CGT 1 1 21.903
197657747 GT-AG 0 1.000000099473604e-05 84 rna-XM_007050530.2 35103521 5 29648147 29648230 Theobroma cacao 3641 AGC|GTGAGCATCA...CTGATTTTATTT/TTTTTTCTCATT...GTTAG|TGT 2 1 30.618
197657748 GT-AG 0 1.000000099473604e-05 110 rna-XM_007050530.2 35103521 6 29647961 29648070 Theobroma cacao 3641 ATG|GTGAGGATCT...CTGTCCGAATTA/GAATTACTGAAG...AACAG|GCT 0 1 32.583
197657749 GT-AG 0 1.000000099473604e-05 81 rna-XM_007050530.2 35103521 7 29647790 29647870 Theobroma cacao 3641 TTG|GTAAGTGCTT...AAATTTTTGATT/TGATTTCTCATT...TGCAG|AAG 0 1 34.911
197657750 GT-AG 0 0.0003447070312742 118 rna-XM_007050530.2 35103521 8 29647452 29647569 Theobroma cacao 3641 CCG|GTAATTTTAA...TTTTGCTTGATT/TTTTGCTTGATT...CTCAG|CTC 1 1 40.6
197657751 GT-AG 0 0.0001094422361668 112 rna-XM_007050530.2 35103521 9 29647273 29647384 Theobroma cacao 3641 GGG|GTAAGCTATC...TATTTTGTATCT/TTGTATCTAAGA...GCCAG|GTA 2 1 42.333
197657752 GT-AG 0 4.148197907298908e-05 132 rna-XM_007050530.2 35103521 10 29647074 29647205 Theobroma cacao 3641 CAG|GTATGAGTGC...TATGTCTTGAAT/CTTGAATTAACC...TGCAG|CCT 0 1 44.065
197657753 GT-AG 0 0.0001154510915265 178 rna-XM_007050530.2 35103521 11 29646506 29646683 Theobroma cacao 3641 ATG|GTATGGTACT...TTTTTCTAAGTC/ATTTTTCTAAGT...TACAG|CAT 0 1 54.151

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