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

✎ 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
207136036 GT-AG 0 1.000000099473604e-05 1343 rna-XM_026393075.1 37556888 1 20747306 20748648 Urocitellus parryii 9999 CCG|GTAAGGACGC...TGTGCGTTTGTC/ATCTGACACATC...TCTAG|ACA 0 1 12.227
207136037 GT-AG 0 1.000000099473604e-05 2199 rna-XM_026393075.1 37556888 2 20744948 20747146 Urocitellus parryii 9999 AAG|GTGAAATTCC...TATTTTATGATC/TATTTTATGATC...TCTAG|GTG 0 1 23.799
207136038 GT-AG 0 1.000000099473604e-05 20543 rna-XM_026393075.1 37556888 3 20724337 20744879 Urocitellus parryii 9999 AAG|GTAAAATATT...TCTTTCTTCTCT/CCTGCTCTCATG...CACAG|CCT 2 1 28.748
207136039 GT-AG 0 1.000000099473604e-05 546 rna-XM_026393075.1 37556888 4 20723705 20724250 Urocitellus parryii 9999 GAG|GTAGGTGCCC...CCCGCCTTGTTG/CGTGGTCTAACA...TGCAG|GTG 1 1 35.007
207136040 GT-AG 0 1.4521910473563347e-05 5529 rna-XM_026393075.1 37556888 5 20718146 20723674 Urocitellus parryii 9999 AGA|GTAGGTCGTG...ATCCATTTATCA/CATCCATTTATC...TCCAG|TTG 1 1 37.191
207136041 GT-AG 0 1.000000099473604e-05 3138 rna-XM_026393075.1 37556888 6 20714913 20718050 Urocitellus parryii 9999 AAG|GTGAGAAGGG...ACCTCCTTCATC/TCCTTCATCACT...CACAG|CAA 0 1 44.105
207136042 GT-AG 0 1.000000099473604e-05 2726 rna-XM_026393075.1 37556888 7 20712095 20714820 Urocitellus parryii 9999 CAC|GTGCGTACCC...CACACCTTCCCT/CTGCTGGTCACA...TTCAG|GGG 2 1 50.801
207136043 GT-AG 0 1.000000099473604e-05 536 rna-XM_026393075.1 37556888 8 20711460 20711995 Urocitellus parryii 9999 CAA|GTGCGTGGGC...GGAGCCTTTCTG/CGTTGTGTGACT...CACAG|GCC 2 1 58.006
207136044 GT-AG 0 1.000000099473604e-05 1980 rna-XM_026393075.1 37556888 9 20709411 20711390 Urocitellus parryii 9999 CAA|GTAAGTGAGA...GATTCTTTCCCT/AGCGTGTGGATT...AACAG|ACT 2 1 63.028
207136045 GT-AG 0 1.000000099473604e-05 105 rna-XM_026393075.1 37556888 10 20709213 20709317 Urocitellus parryii 9999 CAA|GTAAGGGTGC...AGCTTCTGAGTG/AAGCTTCTGAGT...TTCAG|GTT 2 1 69.796
207136046 GT-AG 0 1.000000099473604e-05 3212 rna-XM_026393075.1 37556888 11 20705907 20709118 Urocitellus parryii 9999 TAT|GTGAGTATCC...GCTGTCCTGTCT/GGAGGGGTCATG...TGCAG|GGC 0 1 76.638
207136047 GT-AG 0 1.000000099473604e-05 4141 rna-XM_026393075.1 37556888 12 20701668 20705808 Urocitellus parryii 9999 CAG|GTGCGTGAGG...CTTGTCTTCCTG/TCTGTGCTCAGT...GGCAG|GTA 2 1 83.77
207136048 GT-AG 0 3.506514987806772e-05 262 rna-XM_026393075.1 37556888 13 20701273 20701534 Urocitellus parryii 9999 GAT|GTAGGTATCT...GTTTCTGTACTA/TCTGTACTAAGA...CCTAG|GCG 0 1 93.45

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