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

✎ 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
141263796 GT-AG 0 2.6842757683253745e-05 13838 rna-XM_023514933.1 25571550 1 27232820 27246657 Otolemur garnettii 30611 GAG|GTAAGCTCTC...ACCACCTGGATG/TCCACTCTCACC...CTCAG|GGT 1 1 7.534
141263797 GT-AG 0 0.013554964632991 1594 rna-XM_023514933.1 25571550 2 27231098 27232691 Otolemur garnettii 30611 AAG|GTACCTCTCC...TGCCCCTTGCGT/CCCCCCTCCATC...AACAG|CTC 0 1 13.141
141263798 GT-AG 0 1.000000099473604e-05 1952 rna-XM_023514933.1 25571550 3 27229008 27230959 Otolemur garnettii 30611 GAG|GTACTAGCCC...TCTACTTTAACA/TCTACTTTAACA...TGCAG|GTG 0 1 19.185
141263799 GT-AG 0 1.000000099473604e-05 2803 rna-XM_023514933.1 25571550 4 27226042 27228844 Otolemur garnettii 30611 CTG|GTAAGAGCAA...TAAATCTTAGCT/TTGTTTTTCATC...CTCAG|GGG 1 1 26.325
141263800 GT-AG 0 1.000000099473604e-05 282 rna-XM_023514933.1 25571550 5 27225526 27225807 Otolemur garnettii 30611 TCG|GTAAGGGCTT...GGGGCCTGACCC/AGGGGCCTGACC...TGCAG|GCA 1 1 36.575
141263801 GT-AG 0 1.000000099473604e-05 2296 rna-XM_023514933.1 25571550 6 27223131 27225426 Otolemur garnettii 30611 AAG|GTGAGTCCCC...TTGGTCTTCTCT/CCTACTCTGACC...TTCAG|GTG 1 1 40.911
141263802 GT-AG 0 1.000000099473604e-05 13463 rna-XM_023514933.1 25571550 7 27209477 27222939 Otolemur garnettii 30611 AAG|GTAAGCCCAC...CGGCCTTTGGTT/GTCTAGCTGACG...CCCAG|GAT 0 1 49.277
141263803 GT-AG 0 1.000000099473604e-05 4412 rna-XM_023514933.1 25571550 8 27204962 27209373 Otolemur garnettii 30611 GAG|GTAAGTGAGC...CCTATTCTGACA/CCTATTCTGACA...AACAG|TCT 1 1 53.789
141263804 GT-AG 0 1.000000099473604e-05 3153 rna-XM_023514933.1 25571550 9 27201451 27204603 Otolemur garnettii 30611 TGG|GTGAGTGTGT...GTGGCCTTCTCT/GCCAGGCCAATC...ACCAG|TGC 2 1 69.47
141263805 GT-AG 0 1.000000099473604e-05 3225 rna-XM_023514933.1 25571550 10 27198060 27201284 Otolemur garnettii 30611 CAG|GTGAGTCAGG...CCTCTCTTACCT/CCCTCTCTTACC...CCTAG|GTT 0 1 76.741
141263806 GT-AG 0 1.000000099473604e-05 2171 rna-XM_023514933.1 25571550 11 27195725 27197895 Otolemur garnettii 30611 AAG|GTGAGGGTGG...TCCACCCTCACA/TCCACCCTCACA...GTTAG|GGG 2 1 83.925
141263807 GT-AG 0 1.000000099473604e-05 341 rna-XM_023514933.1 25571550 12 27195319 27195659 Otolemur garnettii 30611 TAG|GTAAAGAGTC...CCTCCATTGACC/CCTCCATTGACC...CCCAG|CCT 1 1 86.772
141263808 GT-AG 0 1.000000099473604e-05 973 rna-XM_023514933.1 25571550 13 27194225 27195197 Otolemur garnettii 30611 CAG|GTAAGGCCTG...GGTCCCTTATTC/AGGTCCCTTATT...CCCAG|GTT 2 1 92.072

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