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)

12 rows where transcript_id = 4157807

✎ 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
21481689 GT-AG 0 0.0007449239000047 1095 rna-XM_039034195.1 4157807 1 26694576 26695670 Benincasa hispida 102211 AAG|GTATAAATTA...GTTCCTTTAGAC/CTATTTCTGATA...ACTAG|TTA 0 1 29.686
21481690 GT-AG 0 1.000000099473604e-05 457 rna-XM_039034195.1 4157807 2 26695863 26696319 Benincasa hispida 102211 AAG|GTACAGGCGT...ATTTTTTTCATC/ATTTTTTTCATC...TGAAG|GAA 0 1 35.426
21481691 GT-AG 0 2.8095561099745545e-05 788 rna-XM_039034195.1 4157807 3 26696485 26697272 Benincasa hispida 102211 GAG|GTAATTTCAT...TTTTTCTTACTG/GTTTTTCTTACT...TTTAG|GTT 0 1 40.359
21481692 GT-AG 0 0.0020516793675445 80 rna-XM_039034195.1 4157807 4 26697372 26697451 Benincasa hispida 102211 TGG|GTATGTATCA...CTCTTCTAAAAT/ATTAGGTTGATC...TACAG|ATA 0 1 43.318
21481693 GT-AG 0 1.000000099473604e-05 472 rna-XM_039034195.1 4157807 5 26697704 26698175 Benincasa hispida 102211 GAG|GTACTGAGAG...TTTTCTATATCG/CTATATCGCACA...TGCAG|TTC 0 1 50.852
21481694 GT-AG 0 0.0001967771297415 5214 rna-XM_039034195.1 4157807 6 26698428 26703641 Benincasa hispida 102211 AAG|GTATGTACTT...CTTTCATTATCC/TCTGCTTTCATT...TTCAG|GTT 0 1 58.386
21481695 GT-AG 0 1.000000099473604e-05 118 rna-XM_039034195.1 4157807 7 26703774 26703891 Benincasa hispida 102211 GAG|GTTGTTCATT...TTTTTGTTAACT/TTTTTGTTAACT...TACAG|TTA 0 1 62.332
21481696 GT-AG 0 0.007978564463642 83 rna-XM_039034195.1 4157807 8 26704153 26704235 Benincasa hispida 102211 AAG|GTAACGTTTC...TTCCTTTTAACT/TTCCTTTTAACT...TACAG|AAC 0 1 70.135
21481697 GT-AG 0 0.0001969909931779 6014 rna-XM_039034195.1 4157807 9 26704308 26710321 Benincasa hispida 102211 CCG|GTACAATTTT...GTGACTTTTATG/GTGACTTTTATG...GGCAG|GTT 0 1 72.287
21481698 GT-AG 0 1.000000099473604e-05 298 rna-XM_039034195.1 4157807 10 26710472 26710769 Benincasa hispida 102211 CAG|GTAAACCAAA...TTTTTCTGATCC/TTTTTTCTGATC...TGTAG|GTC 0 1 76.771
21481699 GT-AG 0 0.0274187031252882 130 rna-XM_039034195.1 4157807 11 26711244 26711373 Benincasa hispida 102211 GAG|GTAACTTTAT...TTGCCTTTATTA/TTTGCCTTTATT...TTTAG|ATA 0 1 90.942
21481700 GT-AG 0 1.000000099473604e-05 91 rna-XM_039034195.1 4157807 12 26711673 26711763 Benincasa hispida 102211 AAG|GTAAAACACA...TTCATTTTAGTG/ATTTAATTCATT...GACAG|GTG 2 1 99.88

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