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)

14 rows where transcript_id = 6061987

✎ 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
31222287 GT-AG 0 1.000000099473604e-05 1473 rna-XM_030469474.1 6061987 2 113890524 113891996 Calypte anna 9244 CAG|GTAAATATTT...AGCTTCTTGTTT/GATGTTTTCAGC...AATAG|GAA 2 1 3.299
31222288 GT-AG 0 1.000000099473604e-05 884 rna-XM_030469474.1 6061987 3 113892076 113892959 Calypte anna 9244 GTG|GTAAGAAGTT...TACTTCTTGTTC/TCGGTAGTCATT...TAAAG|GTG 0 1 4.763
31222289 GT-AG 0 1.000000099473604e-05 696 rna-XM_030469474.1 6061987 4 113895789 113896484 Calypte anna 9244 CAG|GTGAGTCCAC...CCCATTTTAATT/CCCATTTTAATT...CATAG|ATG 0 1 57.191
31222290 GT-AG 0 1.000000099473604e-05 447 rna-XM_030469474.1 6061987 5 113896539 113896985 Calypte anna 9244 GAG|GTCAGTTCTT...TAGCTTTTATCG/TTTTTTTTCATA...TCTAG|CGT 0 1 58.191
31222291 GT-AG 0 1.8795315994596136e-05 7926 rna-XM_030469474.1 6061987 6 113897170 113905095 Calypte anna 9244 GAT|GTAAGCAAAT...ATTGTTTTATAT/TTTATATTTATT...TTTAG|GTA 1 1 61.601
31222292 GT-AG 0 1.000000099473604e-05 422 rna-XM_030469474.1 6061987 7 113905378 113905799 Calypte anna 9244 AAG|GTAAGACAGC...TAATTTTTAGTT/TTTTGATTAATT...ATTAG|ATG 1 1 66.827
31222293 GT-AG 0 0.0027971823470627 5713 rna-XM_030469474.1 6061987 8 113906154 113911866 Calypte anna 9244 AAG|GTATGCAGAG...TTGCTTTTAACA/TTGCTTTTAACA...TTTAG|GCT 1 1 73.388
31222294 GT-AG 0 10.739185519780968 331 rna-XM_030469474.1 6061987 9 113912196 113912526 Calypte anna 9244 AAG|GTATCTTTAT...CCCCCCTTAATG/TCCCCCCTTAAT...GACAG|GTC 0 1 79.485
31222295 GT-AG 0 1.000000099473604e-05 5720 rna-XM_030469474.1 6061987 10 113912797 113918516 Calypte anna 9244 GAG|GTAAGGGTCT...AACTCCGTAACA/CAAGAAATAACT...TCCAG|GAA 0 1 84.489
31222296 GT-AG 0 1.000000099473604e-05 6976 rna-XM_030469474.1 6061987 11 113918684 113925659 Calypte anna 9244 CAG|GTTAGCAGCA...TCTTTTTTATTT/ATCTTTTTTATT...CCCAG|ACC 2 1 87.583
31222297 GT-AG 0 1.000000099473604e-05 1178 rna-XM_030469474.1 6061987 12 113925806 113926983 Calypte anna 9244 CAG|GTGTGTGGCC...TTGTTCTCATCA/TTTGTTCTCATC...TCCAG|AGT 1 1 90.289
31222298 GT-AG 0 1.000000099473604e-05 209 rna-XM_030469474.1 6061987 13 113927062 113927270 Calypte anna 9244 GCG|GTGAGTAAAT...GCACCTTTATTC/CCTTTATTCAAT...TTTAG|ATC 1 1 91.735
31222299 GT-AG 0 1.000000099473604e-05 885 rna-XM_030469474.1 6061987 14 113927422 113928306 Calypte anna 9244 GGG|GTAAGAGTAA...TCTCCTTTATTT/TTCTCCTTTATT...TGCAG|ACC 2 1 94.533
31238772 GT-AG 0 1.000000099473604e-05 18816 rna-XM_030469474.1 6061987 1 113871578 113890393 Calypte anna 9244 AAG|GTCAGTGCTC...TTTATTTTATTT/CTTTATTTTATT...AACAG|AAT   0 1.705

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