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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
77699556 GT-AG 0 1.000000099473604e-05 3444 rna-XM_005228685.3 14514643 4 7509178 7512621 Falco peregrinus 8954 AAG|GTAAGCATAC...GAATGCTTAAGG/TAATGACTGAAA...TGCAG|ATC 2 1 11.115
77699557 GT-AG 0 1.000000099473604e-05 10389 rna-XM_005228685.3 14514643 5 7498744 7509132 Falco peregrinus 8954 AAT|GTAAGTAAAT...TTGTACTTACTG/CTTGTACTTACT...TACAG|GAA 2 1 12.64
77699558 GT-AG 0 1.000000099473604e-05 4304 rna-XM_005228685.3 14514643 6 7494129 7498432 Falco peregrinus 8954 AAG|GTAAGATGTT...AAATTTTTAACT/AAATTTTTAACT...TATAG|ATG 1 1 23.179
77699559 GT-AG 0 1.000000099473604e-05 7915 rna-XM_005228685.3 14514643 7 7484958 7492872 Falco peregrinus 8954 CGG|GTAAGTCACA...ACTCTTCTAGTA/TGTCTGTTCACT...AATAG|CTA 0 1 65.74
77699560 GT-AG 0 0.0003016565963138 3670 rna-XM_005228685.3 14514643 8 7481143 7484812 Falco peregrinus 8954 TTG|GTACGTGTTC...CTTTTTTTAATG/CTTTTTTTAATG...TACAG|GGA 1 1 70.654
77699561 GT-AG 0 0.0001117800493968 2146 rna-XM_005228685.3 14514643 9 7478791 7480936 Falco peregrinus 8954 CCT|GTAAGTTAAT...TATTCCTTTTCT/AACATACTTATG...GTTAG|GTT 0 1 77.635
77699562 GT-AG 0 0.000492289374809 383 rna-XM_005228685.3 14514643 10 7478243 7478625 Falco peregrinus 8954 AAG|GTACACTCAT...GATTTTTTTCCT/AAAGTGCTAAGG...TACAG|GAA 0 1 83.226
77699563 GT-AG 0 1.000000099473604e-05 90 rna-XM_005228685.3 14514643 11 7477997 7478086 Falco peregrinus 8954 AGG|GTAAGAATCC...GTCATTTTAAAA/TTAGTGGTCATT...TACAG|AAT 0 1 88.512
77699564 GT-AG 0 8.736043821810788e-05 873 rna-XM_005228685.3 14514643 12 7477050 7477922 Falco peregrinus 8954 TAG|GTAATTTTTT...GTTTACTTATTT/AGTTTACTTATT...AATAG|GGA 2 1 91.02
77699565 GT-AG 0 1.000000099473604e-05 212 rna-XM_005228685.3 14514643 13 7476694 7476905 Falco peregrinus 8954 GAG|GTAAAAGAAA...TCTTTTTTGTTT/CCAGAACTGAAA...CACAG|GTT 2 1 95.9
77700317 GT-AG 0 1.000000099473604e-05 5429 rna-XM_005228685.3 14514643 1 7520799 7526227 Falco peregrinus 8954 TCG|GTAAGAGGGG...AATGTTTTGCAT/CAAAAACTGAAA...TATAG|GTA   0 3.151
77700318 GT-AG 0 0.0121447317626666 7201 rna-XM_005228685.3 14514643 2 7513530 7520730 Falco peregrinus 8954 ATG|GTATGTTTAT...TTAACTTTAGAG/AAGAGACTAACT...TTCAG|CCA   0 5.456
77700319 GT-AG 0 1.000000099473604e-05 642 rna-XM_005228685.3 14514643 3 7512741 7513382 Falco peregrinus 8954 CAG|GTAAAATACA...GGACTTTTAACT/ATTATTTTTACT...TTTAG|AGT   0 10.437

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