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)

10 rows where transcript_id = 24953042

✎ 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
137151462 GT-AG 0 1.000000099473604e-05 12720 rna-XM_041398230.1 24953042 1 34595143 34607862 Onychostruthus taczanowskii 356909 GCG|GTGAGAGAGT...TGCTCTTTGTCC/TTGCCACTGACA...TTCAG|AAT 1 1 2.458
137151463 GT-AG 0 0.0005152686443004 6570 rna-XM_041398230.1 24953042 2 34607987 34614556 Onychostruthus taczanowskii 356909 CAG|GTATGCCCAT...ATGTTGTTACTT/AATGTTGTTACT...TTCAG|TTT 2 1 6.633
137151464 GT-AG 0 0.0038309096425144 4373 rna-XM_041398230.1 24953042 3 34614664 34619036 Onychostruthus taczanowskii 356909 ACA|GTATGTATAT...ACTTTTTTCTCT/TCCAATGTCACT...CTCAG|GAA 1 1 10.236
137151465 GT-AG 0 3.099104213355534e-05 14715 rna-XM_041398230.1 24953042 4 34619166 34633880 Onychostruthus taczanowskii 356909 AAG|GTAAACATGA...GTTCCCTTGTTT/TGATTTCTGACA...TGCAG|GCT 1 1 14.579
137151466 GT-AG 0 1.000000099473604e-05 4667 rna-XM_041398230.1 24953042 5 34633997 34638663 Onychostruthus taczanowskii 356909 GAA|GTAAGTGGGG...TGGATCCTATTC/ATCCTATTCACT...TACAG|GTT 0 1 18.485
137151467 GT-AG 0 1.000000099473604e-05 14897 rna-XM_041398230.1 24953042 6 34639057 34653953 Onychostruthus taczanowskii 356909 GAG|GTAAGTGGCT...TGCTTTTTATTC/ATGCTTTTTATT...TCCAG|GGA 0 1 31.717
137151468 GT-AG 0 1.0277514019169654e-05 39931 rna-XM_041398230.1 24953042 7 34654384 34694314 Onychostruthus taczanowskii 356909 GCT|GTAAGTAAAA...TTATTTTCAATT/TTTATTTTCAAT...TCCAG|CTC 1 1 46.195
137151469 GT-AG 0 1.000000099473604e-05 11324 rna-XM_041398230.1 24953042 8 34694515 34705838 Onychostruthus taczanowskii 356909 AAG|GTATGAGTAC...TCCATCTTCTCT/TATTTTTCCATC...TCCAG|GTC 0 1 52.929
137151470 GT-AG 0 1.000000099473604e-05 10323 rna-XM_041398230.1 24953042 9 34706092 34716414 Onychostruthus taczanowskii 356909 TAG|GTACTGCGAT...TACTTTTTAACA/TACTTTTTAACA...TTCAG|GTA 1 1 61.448
137151471 GT-AG 0 1.5058149951798204e-05 26269 rna-XM_041398230.1 24953042 10 34716612 34742880 Onychostruthus taczanowskii 356909 AGG|GTAAGCCCCT...TGGTTCCTGACT/TGGTTCCTGACT...CACAG|ATC 0 1 68.081

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