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

✎ 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
162620897 GT-AG 0 1.000000099473604e-05 1041 rna-XM_015819248.1 29163110 1 143756 144796 Protobothrops mucrosquamatus 103944 AAG|GTTTGTTGAA...TGTATTTTAAAG/TTAATGCTTATA...TGTAG|GAG 0 1 2.835
162620898 GT-AG 0 1.000000099473604e-05 1790 rna-XM_015819248.1 29163110 2 141791 143580 Protobothrops mucrosquamatus 103944 TAG|GTGAGCTATA...TTTGTCTTCCTC/CATTTGGTCATT...TTTAG|TCG 1 1 8.537
162620899 GT-AG 0 5.538313638544132e-05 314 rna-XM_015819248.1 29163110 3 141295 141608 Protobothrops mucrosquamatus 103944 CAG|GTAACTGGAA...GTTTCTTTTGCA/ATCATCCTGAAA...TTCAG|CTG 0 1 14.467
162620900 GT-AG 0 1.000000099473604e-05 298 rna-XM_015819248.1 29163110 4 140832 141129 Protobothrops mucrosquamatus 103944 CCA|GTGAGTGCCA...TCTTTTTTAATC/TCTTTTTTAATC...CCTAG|GTG 0 1 19.844
162620901 GT-AG 0 1.000000099473604e-05 1531 rna-XM_015819248.1 29163110 5 139063 140593 Protobothrops mucrosquamatus 103944 GTG|GTAAATGCTA...CTGTTCTTCATC/CTGTTCTTCATC...TACAG|GAA 1 1 27.599
162620902 GT-AG 0 0.0001421993846895 1019 rna-XM_015819248.1 29163110 6 137915 138933 Protobothrops mucrosquamatus 103944 AAG|GTAAACTCTC...TTTAATTTAACT/TTTAATTTAACT...TATAG|TTG 1 1 31.802
162620903 GT-AG 0 0.0388249876412163 2208 rna-XM_015819248.1 29163110 7 135552 137759 Protobothrops mucrosquamatus 103944 CAG|GTATTTTTAA...CTGTTTTTGACT/CTGTTTTTGACT...TACAG|ATG 0 1 36.852
162620904 GT-AG 0 1.000000099473604e-05 2948 rna-XM_015819248.1 29163110 8 132126 135073 Protobothrops mucrosquamatus 103944 GTG|GTGAGCATTT...TCTTTCTGAATT/TTCTTTCTGAAT...CTTAG|TAT 1 1 52.428
162620905 GT-AG 0 1.4571415854438951e-05 2173 rna-XM_015819248.1 29163110 9 129174 131346 Protobothrops mucrosquamatus 103944 CCT|GTAAGTAAAA...TTGTTTTTATTT/TTTATTTTCAGT...TCTAG|GGT 0 1 77.81
162620906 GT-AG 0 2.794502847339933e-05 208 rna-XM_015819248.1 29163110 10 128828 129035 Protobothrops mucrosquamatus 103944 GAG|GTACAAATTC...ATTCCCTTTTCT/AACATATTTAGC...CACAG|GTT 0 1 82.307
162620907 GT-AG 0 1.000000099473604e-05 918 rna-XM_015819248.1 29163110 11 127776 128693 Protobothrops mucrosquamatus 103944 ATG|GTAAGGATGC...TTTTTCTTTTCT/AAGTGATTCAAA...TATAG|GAC 2 1 86.673
162620908 GT-AG 0 5.023610876297948e-05 792 rna-XM_015819248.1 29163110 12 126817 127608 Protobothrops mucrosquamatus 103944 ATG|GTATGTGCCC...ATTTTTTTGTCC/CTTGGTCTGATT...TGCAG|GAG 1 1 92.115
162620909 GT-AG 0 1.7069592011457975e-05 1167 rna-XM_015819248.1 29163110 13 125450 126616 Protobothrops mucrosquamatus 103944 GGG|GTAGGTTGAA...TGTGTATTGACT/TGTGTATTGACT...TTCAG|CTA 0 1 98.631

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