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)

12 rows where transcript_id = 31341651

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
174593678 GT-AG 0 2.0722398328228765e-05 66 rna-NZN594_LOCUS714 31341651 1 3828392 3828457 Rotaria sp. silwood1 2762511 TTC|GTAATACTAA...TGTTTTTTATTT/TTGTTTTTTATT...TTTAG|AAG 1 1 9.383
174593679 GT-AG 0 4.836824270233856e-05 48 rna-NZN594_LOCUS714 31341651 2 3828751 3828798 Rotaria sp. silwood1 2762511 TTA|GTATGAAAGT...TCGTTTTTCTTT/AATAAATTCATC...TTTAG|ACA 0 1 16.581
174593680 GT-AG 0 2.9907366557147083e-05 56 rna-NZN594_LOCUS714 31341651 3 3828980 3829035 Rotaria sp. silwood1 2762511 ATG|GTAAGATTCT...TTTTTCTTAAAT/TTTTTCTTAAAT...TTTAG|ATC 1 1 21.027
174593681 GT-AG 0 3.1352529132766344e-05 87 rna-NZN594_LOCUS714 31341651 4 3829257 3829343 Rotaria sp. silwood1 2762511 GTG|GTAAATATTA...TTTCTTTTATAC/TTTATACTCACA...TTTAG|TTT 0 1 26.455
174593682 GT-AG 0 1.2932008237969523e-05 58 rna-NZN594_LOCUS714 31341651 5 3829732 3829789 Rotaria sp. silwood1 2762511 CAG|GTAGCAAAAT...TTTTTTTTTGCA/TTTTTCTGTATA...TTAAG|GAT 1 1 35.986
174593683 GT-AG 0 1.3842270902679952e-05 58 rna-NZN594_LOCUS714 31341651 6 3830111 3830168 Rotaria sp. silwood1 2762511 CTA|GTAAGGTTTT...TGTTTTTCAATG/TTGTTTTTCAAT...CGAAG|GTA 1 1 43.871
174593684 GT-AG 0 0.0002475534876395 641 rna-NZN594_LOCUS714 31341651 7 3830719 3831359 Rotaria sp. silwood1 2762511 TAA|GTAAGTTGTA...GACGTCTTAATC/TACTGCTTCATT...TTTAG|TGA 2 1 57.381
174593685 GT-AG 0 8.788530707591198e-05 75 rna-NZN594_LOCUS714 31341651 8 3831607 3831681 Rotaria sp. silwood1 2762511 ACG|GTTTTGATTC...TTTGTTTTATTT/TTTTGTTTTATT...TTTAG|CTT 0 1 63.449
174593686 GT-AG 0 0.133380544757053 576 rna-NZN594_LOCUS714 31341651 9 3831994 3832569 Rotaria sp. silwood1 2762511 ACT|GTATGTTATA...ATTCTTTTATTT/TGTATATTAATT...TTCAG|GTG 0 1 71.113
174593687 GT-AG 0 0.1104617060513011 48 rna-NZN594_LOCUS714 31341651 10 3832715 3832762 Rotaria sp. silwood1 2762511 TAA|GTATGTTTTT...TTTGTCTAATTA/CAAATATTTATT...TTTAG|TTA 1 1 74.675
174593688 GT-AG 0 0.0004615950138569 1020 rna-NZN594_LOCUS714 31341651 11 3833353 3834372 Rotaria sp. silwood1 2762511 CAA|GTATAAAAAA...ATTTTTTTAATC/ATTTTTTTAATC...TATAG|TTG 0 1 89.167
174593689 GT-AG 0 1.000000099473604e-05 53 rna-NZN594_LOCUS714 31341651 12 3834446 3834498 Rotaria sp. silwood1 2762511 AAG|GTAAAGATAA...ATTTCTATATTA/TATGTATTTATT...TTCAG|CTA 1 1 90.96

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