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

✎ 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
162620964 GT-AG 0 1.000000099473604e-05 1414 rna-XM_029285329.1 29163114 1 348768 350181 Protobothrops mucrosquamatus 103944 CAA|GTAAGTGGGG...AACTTTTTAAGA/AACTTTTTAAGA...CACAG|CCA 2 1 19.405
162620965 GT-AG 0 1.000000099473604e-05 216 rna-XM_029285329.1 29163114 2 348452 348667 Protobothrops mucrosquamatus 103944 AAG|GTAATAAAAG...TTTCTCTTAACT/TACTTTTTTATT...TGTAG|GCT 0 1 24.721
162620966 GT-AG 0 1.000000099473604e-05 12378 rna-XM_029285329.1 29163114 3 336017 348394 Protobothrops mucrosquamatus 103944 GTG|GTAAGAGAGG...CTTTTCTTCCCA/TCCCACCTGATT...GTCAG|AAG 0 1 27.751
162620967 GT-AG 0 1.000000099473604e-05 1427 rna-XM_029285329.1 29163114 4 334453 335879 Protobothrops mucrosquamatus 103944 TGG|GTAAGTGTTT...GAATGCTTAATC/TTTCTTTTCAAT...TACAG|ATA 2 1 35.035
162620968 GT-AG 0 1.000000099473604e-05 1311 rna-XM_029285329.1 29163114 5 333044 334354 Protobothrops mucrosquamatus 103944 AAA|GTAAGAAAGT...TTTTTTTTAAAT/TTTTTTTTAAAT...TTAAG|CTT 1 1 40.245
162620969 GT-AG 0 1.000000099473604e-05 2573 rna-XM_029285329.1 29163114 6 330314 332886 Protobothrops mucrosquamatus 103944 TAG|GTAAGAGATT...TGTATATTAGTT/ATAAAACTGATT...TTTAG|GAA 2 1 48.591
162620970 GT-AG 0 1.84197965281012e-05 1537 rna-XM_029285329.1 29163114 7 328638 330174 Protobothrops mucrosquamatus 103944 CCT|GTAAGTATCA...AAAGGCTTACCA/CGAATGTTTATA...TAAAG|GAT 0 1 55.981
162620971 GT-AG 0 1.000000099473604e-05 1306 rna-XM_029285329.1 29163114 8 327191 328496 Protobothrops mucrosquamatus 103944 CAA|GTAAGAATGA...AGAACCTTAACT/TATAACTTCATC...TGCAG|ACG 0 1 63.477
162620972 GT-AG 0 0.0005435956705732 1053 rna-XM_029285329.1 29163114 9 326018 327070 Protobothrops mucrosquamatus 103944 TGT|GTAAGTTGGA...TTTACTTTATCT/AAGTGTTTTACT...TCTAG|GAT 0 1 69.856
162620973 GT-AG 0 0.031810148453541 328 rna-XM_029285329.1 29163114 10 325544 325871 Protobothrops mucrosquamatus 103944 TAT|GTAACTATAT...ATAATTTTGACT/ATAATTTTGACT...TTCAG|AGT 2 1 77.618
162620974 GT-AG 0 1.000000099473604e-05 3314 rna-XM_029285329.1 29163114 11 322151 325464 Protobothrops mucrosquamatus 103944 CAG|GTAAGGGGAT...TGAATCTTATTC/ATGAATCTTATT...CTCAG|GGA 0 1 81.818
162620975 GT-AG 0 1.671544449151491e-05 2868 rna-XM_029285329.1 29163114 12 319153 322020 Protobothrops mucrosquamatus 103944 AAG|GTAATATTTT...GTTTTTTTAAAC/ATGGATCTCATG...CTTAG|ATC 1 1 88.729
162620976 GT-AG 0 1.000000099473604e-05 3459 rna-XM_029285329.1 29163114 13 315508 318966 Protobothrops mucrosquamatus 103944 AAG|GTAAAAAAAA...ACGTTCTTAATA/TTTTTGTTTACA...CTTAG|AGG 1 1 98.618

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