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)

11 rows where transcript_id = 37928566

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
209469687 GT-AG 0 1.000000099473604e-05 1842 rna-XM_017550250.1 37928566 1 36516122 36517963 Vigna angularis 3914 GAG|GTCAGTTTCA...TCAATTTTGAAA/ACACTTCTGAAT...GGCAG|GTT 0 1 7.437
209469688 GT-AG 0 1.000000099473604e-05 1738 rna-XM_017550250.1 37928566 2 36518183 36519920 Vigna angularis 3914 CAG|GTGGCTGTTT...GAATTCTGAAAC/CGTATTATCAAT...TGCAG|GTT 0 1 13.212
209469689 GT-AG 0 1.000000099473604e-05 75 rna-XM_017550250.1 37928566 3 36520116 36520190 Vigna angularis 3914 GAG|GTAGGCCACA...TCCTTTTTATAC/TTTATACTAATT...TGAAG|GTT 0 1 18.354
209469690 GT-AG 0 1.000000099473604e-05 164 rna-XM_017550250.1 37928566 4 36520538 36520701 Vigna angularis 3914 CAG|GTAGTGCTTC...AATTACTTGATG/GTAGTTCTCAAT...TACAG|CAA 2 1 27.505
209469691 GT-AG 0 0.0003640243847932 406 rna-XM_017550250.1 37928566 5 36520934 36521339 Vigna angularis 3914 GAG|GTATAATATT...GAACCCTTATGT/TACATGCTAACA...ATCAG|GTG 0 1 33.623
209469692 GT-AG 0 1.000000099473604e-05 614 rna-XM_017550250.1 37928566 6 36523028 36523641 Vigna angularis 3914 GAG|GTTGGTTTTA...TTAACTTTACTT/TTTAACTTTACT...TTCAG|CCG 2 1 78.138
209469693 GT-AG 0 1.000000099473604e-05 115 rna-XM_017550250.1 37928566 7 36523861 36523975 Vigna angularis 3914 TAG|GTAAAATTAT...TCTATTTTGATC/TCTATTTTGATC...TATAG|AAA 2 1 83.914
209469694 GT-AG 0 1.000000099473604e-05 1158 rna-XM_017550250.1 37928566 8 36524111 36525268 Vigna angularis 3914 AAG|GTAGTAGTAG...TTTATTTTAGCT/CTATTGCTAATG...AACAG|GGA 2 1 87.474
209469695 GT-AG 0 7.608475136749136e-05 83 rna-XM_017550250.1 37928566 9 36525504 36525586 Vigna angularis 3914 CAG|GTACTTCCTT...ACAACTTTAGTA/GCATTTGTGACG...TTCAG|GAA 0 1 93.671
209469696 GT-AG 0 1.000000099473604e-05 164 rna-XM_017550250.1 37928566 10 36525647 36525810 Vigna angularis 3914 CAG|GTTAGTTATT...TTTTTCATATTG/ACATTTTTCATA...CACAG|GTA 0 1 95.253
209469697 GT-AG 0 1.000000099473604e-05 69 rna-XM_017550250.1 37928566 11 36525883 36525951 Vigna angularis 3914 CAG|GTTTGTGAGC...CATACTTTGATG/TTGTTACTTATT...TAAAG|CTG 0 1 97.152

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