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

✎ 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
197657982 GT-AG 0 5.517060121638045e-05 572 rna-XM_007048869.2 35103541 1 10203187 10203758 Theobroma cacao 3641 AAG|GTTTTGTTCT...TTTTCATTAATT/ATTTTTTTCATT...TGTAG|TGT 1 1 2.345
197657983 GT-AG 0 1.000000099473604e-05 188 rna-XM_007048869.2 35103541 2 10203850 10204037 Theobroma cacao 3641 TGG|GTAAGTGTTA...TATTTCTTTTTT/AAGAGTCTGAAT...TTCAG|GCG 2 1 4.857
197657984 GT-AG 0 1.000000099473604e-05 141 rna-XM_007048869.2 35103541 3 10204351 10204491 Theobroma cacao 3641 CAG|GTTCTTCCTT...TACTTTGTGACT/ACTTTTCTGACA...TGCAG|ATT 0 1 13.493
197657985 GT-AG 0 0.0005175670185033 238 rna-XM_007048869.2 35103541 4 10204567 10204804 Theobroma cacao 3641 CAG|GTCACTTTTT...TTCTTCTAAATT/GTTATACTTATA...TATAG|GTT 0 1 15.563
197657986 GT-AG 0 0.0015225411486413 3373 rna-XM_007048869.2 35103541 5 10204850 10208222 Theobroma cacao 3641 CAG|GTAACCAATT...GATTCTTTTGTT/TTGTGACTTATA...TCCAG|GTC 0 1 16.805
197657987 GT-AG 0 1.000000099473604e-05 123 rna-XM_007048869.2 35103541 6 10208314 10208436 Theobroma cacao 3641 CAG|GTGCAGATAT...ATATTCTTGATG/ATATTCTTGATG...TCTAG|TGT 1 1 19.316
197657988 GT-AG 0 3.717138898387981e-05 466 rna-XM_007048869.2 35103541 7 10208496 10208961 Theobroma cacao 3641 AAG|GTACTGTTAC...AATTTTATAACA/ACGTTGCTAATT...TGAAG|ATT 0 1 20.944
197657989 GT-AG 0 0.0006204062484162 1584 rna-XM_007048869.2 35103541 8 10209094 10210677 Theobroma cacao 3641 ATG|GTATTTAACT...ATTTTCTGAATT/TAGTTACTAATT...TCTAG|GAT 0 1 24.586
197657990 GT-AG 0 8.2265745435014e-05 1020 rna-XM_007048869.2 35103541 9 10210731 10211750 Theobroma cacao 3641 CAG|GTACATGTTC...GACATTTTAATG/AATAGTTTAATT...TGCAG|GGA 2 1 26.049
197657991 GT-AG 0 1.000000099473604e-05 142 rna-XM_007048869.2 35103541 10 10211785 10211926 Theobroma cacao 3641 CTG|GTTAGTTCTA...AAAATTTTGATT/TTTTGTTTTATA...AATAG|GTA 0 1 26.987
197657992 GT-AG 0 0.0001527654075034 78 rna-XM_007048869.2 35103541 11 10212017 10212094 Theobroma cacao 3641 CCT|GTAAAATTCT...GCCATTTTATTT/ATTTTATTTAGA...TTCAG|GTA 0 1 29.47
197657993 GT-AG 0 1.845724872770954e-05 119 rna-XM_007048869.2 35103541 12 10213097 10213215 Theobroma cacao 3641 CAG|GTAATCTGTT...ATGATTTTGTTC/TTTGTTCCCATT...GGCAG|GTG 0 1 57.119
197657994 GT-AG 0 1.000000099473604e-05 155 rna-XM_007048869.2 35103541 13 10214323 10214477 Theobroma cacao 3641 AAG|GTAGGTACTT...TTGTTCTTATAT/TATATTTTGATT...TCCAG|GTT 0 1 87.666

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