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

✎ 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
76887145 GT-AG 0 1.000000099473604e-05 3066 rna-XM_010153691.1 14393910 1 56159 59224 Eurypyga helias 54383 CAG|GTAAAGTGCA...TCAATTTTATTT/CTGATTTTCAAT...TGCAG|CAG 1 1 9.426
76887146 GT-AG 0 1.000000099473604e-05 3468 rna-XM_010153691.1 14393910 2 52480 55947 Eurypyga helias 54383 AGA|GTAAAGCACA...TCTGCTTTATTA/GCTTTATTAACA...TCCAG|CCA 2 1 19.035
76887147 GT-AG 0 1.000000099473604e-05 3150 rna-XM_010153691.1 14393910 3 49247 52396 Eurypyga helias 54383 ATG|GTAAGAGACT...TTTCTTTTAATT/TTCTGTCTCATT...TGGAG|AAG 1 1 22.814
76887148 GT-AG 0 1.000000099473604e-05 4253 rna-XM_010153691.1 14393910 4 44955 49207 Eurypyga helias 54383 TAG|GTAAATCATC...AATGCTTTTTCT/GCTTTTTCTATT...TCCAG|AGT 1 1 24.59
76887149 GT-AG 0 1.1765885706749696e-05 2268 rna-XM_010153691.1 14393910 5 42629 44896 Eurypyga helias 54383 AGA|GTAAGTGCTG...GTTTCCTAATTT/CTCTCTTTCATC...TCCAG|CCA 2 1 27.231
76887150 GT-AG 0 1.000000099473604e-05 637 rna-XM_010153691.1 14393910 6 41903 42539 Eurypyga helias 54383 AAG|GTTGGCATCA...ATTTCCCTCTCT/GCTGTTGTGAAA...TCTAG|AAT 1 1 31.284
76887151 GT-AG 0 1.657922916266536e-05 3733 rna-XM_010153691.1 14393910 7 38077 41809 Eurypyga helias 54383 AAG|GTAACAACCT...ATGCTCTTGCCT/TGCCTGTTTATA...CACAG|GAA 1 1 35.519
76887152 GT-AG 0 8.074286142061008e-05 1081 rna-XM_010153691.1 14393910 8 36813 37893 Eurypyga helias 54383 CAG|GTACCGATGC...CTGTCTGTGTCC/CCGGGGTGCACA...TGCAG|GGG 1 1 43.852
76887153 GT-AG 0 1.000000099473604e-05 16062 rna-XM_010153691.1 14393910 9 20130 36191 Eurypyga helias 54383 GAG|GTGAGTTTTC...TTTCCCTTGTTG/CTAATGTTTATT...TTCAG|GAC 1 1 72.131
76887154 GT-AG 0 1.6551558609863733e-05 7464 rna-XM_010153691.1 14393910 10 12634 20097 Eurypyga helias 54383 TCG|GTAAGCACTC...TCTCTCTTTCCA/TCTCTTTCCACT...TACAG|CAA 0 1 73.588
76887155 GT-AG 0 1.000000099473604e-05 6103 rna-XM_010153691.1 14393910 11 6314 12416 Eurypyga helias 54383 GAC|GTGAGTATGA...CAAGCTTTGCAA/GTAAAATTAATA...TGCAG|CTA 1 1 83.47
76887156 GT-AG 0 1.000000099473604e-05 2645 rna-XM_010153691.1 14393910 12 3591 6235 Eurypyga helias 54383 AAT|GTAAGACTGT...TTTTCCTTCTTT/GAAAAATTAATT...TTCAG|TTC 1 1 87.022
76887157 GT-AG 0 1.000000099473604e-05 951 rna-XM_010153691.1 14393910 13 2548 3498 Eurypyga helias 54383 CCT|GTGAGTACAT...TTTTTCTTTCCT/TTTGCGCTAATT...ACCAG|ATT 0 1 91.211

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