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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
207135422 GT-AG 0 1.000000099473604e-05 729 rna-XM_026403646.1 37556840 2 15161234 15161962 Urocitellus parryii 9999 CAG|GTAAAAATCA...CTGTCATTATAT/ATATTACTAATT...CTCAG|GAA 2 1 8.702
207135423 GT-AG 0 0.00022273523691 3236 rna-XM_026403646.1 37556840 3 15157811 15161046 Urocitellus parryii 9999 GAG|GTAGGCATTC...ATATTTTTATTT/TATATTTTTATT...TTCAG|TGC 0 1 15.317
207135424 GT-AG 0 0.0006560835818594 1306 rna-XM_026403646.1 37556840 4 15156328 15157633 Urocitellus parryii 9999 AAG|GTATTTGTTT...TACCTTTTGAAG/ATTGAACTAAAT...TTTAG|GAT 0 1 21.578
207135425 GC-AG 0 1.000000099473604e-05 2435 rna-XM_026403646.1 37556840 5 15153782 15156216 Urocitellus parryii 9999 AAG|GCAAGCTGAA...TGGTTATTAACA/TGGTTATTAACA...GAAAG|GGA 0 1 25.504
207135426 GT-AG 0 0.0001264562437149 1901 rna-XM_026403646.1 37556840 6 15151807 15153707 Urocitellus parryii 9999 GAG|GTAACTAAAA...ATTTTTGTGACC/ATTTTTGTGACC...TGCAG|ATT 2 1 28.122
207135427 GT-AG 0 1.000000099473604e-05 1416 rna-XM_026403646.1 37556840 7 15150299 15151714 Urocitellus parryii 9999 CAG|GTAAGCAGAC...TATATTTTCTCC/TATATATATATT...TAAAG|GCT 1 1 31.376
207135428 GT-AG 0 0.0082459118090564 290 rna-XM_026403646.1 37556840 8 15149858 15150147 Urocitellus parryii 9999 GAG|GTATTTTTTT...ATTGTCTGATTA/AATTGTCTGATT...TTCAG|GAA 2 1 36.717
207135429 GT-AG 0 0.0025580088141292 84 rna-XM_026403646.1 37556840 9 15149737 15149820 Urocitellus parryii 9999 GAG|GTAACCAATA...AATTCCTTTTTT/TTAAGTTTCATG...GGTAG|GTT 0 1 38.026
207135430 GT-AG 0 0.9253901360346286 879 rna-XM_026403646.1 37556840 10 15148777 15149655 Urocitellus parryii 9999 CAG|GTACCCTAAA...CTTGTCTTATTT/CTTATTTTTATC...TACAG|AGA 0 1 40.891
207135431 GT-AG 0 1.000000099473604e-05 2885 rna-XM_026403646.1 37556840 11 15145761 15148645 Urocitellus parryii 9999 ACG|GTAATGTAGC...ATTTCTATGACA/TTAGACTTCATT...TTCAG|AAT 2 1 45.525
207135432 GT-AG 0 3.800873676057244e-05 2106 rna-XM_026403646.1 37556840 12 15143593 15145698 Urocitellus parryii 9999 CTG|GTAGGTATTC...GCATTTTTAATC/GCATTTTTAATC...TTTAG|AAC 1 1 47.718
207135433 GT-AG 0 1.000000099473604e-05 491 rna-XM_026403646.1 37556840 13 15142955 15143445 Urocitellus parryii 9999 AAA|GTAAGTACTG...ATTTTTTTCTTT/TACTTGTTTATT...TTCAG|ATA 1 1 52.918
207136392 GT-AG 0 1.732466528398452e-05 5261 rna-XM_026403646.1 37556840 1 15162139 15167399 Urocitellus parryii 9999 CGG|GTAAGTCCCT...TTTTCTTTAACA/TTTTCTTTAACA...AACAG|TAG   0 3.007

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