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)

14 rows where transcript_id = 5773934

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
29498530 GT-AG 0 0.0005871097123716 425 rna-XM_020354535.2 5773934 1 9541395 9541819 Cajanus cajan 3821 CAG|GTGCTCTTTG...TCTTTTTTAAAT/TAAATTTTAATT...AACAG|TAG 1 1 1.613
29498531 GT-AG 0 0.000967006724996 884 rna-XM_020354535.2 5773934 2 9541927 9542810 Cajanus cajan 3821 CAG|GTATGTTTAC...TTGTTGTTGAAC/GTATTACTCATT...ACCAG|AAC 0 1 2.312
29498532 GT-AG 0 1.000000099473604e-05 95 rna-XM_020354535.2 5773934 3 9542974 9543068 Cajanus cajan 3821 AAG|GTAAAATGTT...TTTTCCTTCTAA/ACTTTTCTCACA...AATAG|GCT 1 1 3.376
29498533 CT-CC 0 0.0195569249994149 201 rna-XM_020354535.2 5773934 4 9544295 9544495 Cajanus cajan 3821 TCC|CTACTCAATT...TGTCCTTTGGCG/CGGAGGATGATT...GTTCC|CTA 0 1 11.383
29498534 GT-AG 0 0.0438130844155296 1825 rna-XM_020354535.2 5773934 5 9549365 9551189 Cajanus cajan 3821 AAG|GTATTTTTAT...AACTTTTTATCT/TAACTTTTTATC...TACAG|ATA 0 1 43.182
29498535 GT-AG 0 0.000318592961131 109 rna-XM_020354535.2 5773934 6 9551808 9551916 Cajanus cajan 3821 CAA|GTAATCTATA...GGATTCTTCTCA/TTATTACTAACT...ATTAG|GTC 0 1 47.218
29498536 GT-AG 0 0.0007549763879233 1984 rna-XM_020354535.2 5773934 7 9552098 9554081 Cajanus cajan 3821 ATG|GTATTGTTGT...TTTTTTTTTTCA/ACCATTCTAATA...TGTAG|GCT 1 1 48.4
29498537 GT-AG 0 0.0001587300811194 86 rna-XM_020354535.2 5773934 8 9554317 9554402 Cajanus cajan 3821 CAG|GTATTATAGA...TGGCTCTGAATT/CTGAATTTGACA...CCCAG|TTT 2 1 49.935
29498538 GT-AG 0 0.0002105491461763 80 rna-XM_020354535.2 5773934 9 9558942 9559021 Cajanus cajan 3821 AAG|GTACAATTTC...TTTGCTTTACAT/CATCATCTCATA...TCCAG|ATT 2 1 79.578
29498539 GT-AG 0 4.54383540089524e-05 200 rna-XM_020354535.2 5773934 10 9559245 9559444 Cajanus cajan 3821 CTG|GTATGGATGG...TTATTATTAGTT/CATTGGCTTATT...TGCAG|TTT 0 1 81.034
29498540 GT-AG 0 0.005661977827593 94 rna-XM_020354535.2 5773934 11 9559844 9559937 Cajanus cajan 3821 CAG|GTATGTTTCT...TTGGTTTTGAAT/TTTTTTTTTATG...TCCAG|GGA 0 1 83.64
29498541 GT-AG 0 1.000000099473604e-05 981 rna-XM_020354535.2 5773934 12 9560082 9561062 Cajanus cajan 3821 CAG|GTTAGCACTT...GGAACCTTAACG/TAATTTCTCACT...CACAG|CGT 0 1 84.581
29498542 GT-AG 0 0.0025158388284067 442 rna-XM_020354535.2 5773934 13 9562089 9562530 Cajanus cajan 3821 CAG|GTATTTTATA...GATTTCTTGTTC/TGGAATCTGATT...TACAG|GGG 0 1 91.281
29498543 GT-AG 0 0.0271135511407576 257 rna-XM_020354535.2 5773934 14 9563038 9563294 Cajanus cajan 3821 CTG|GTATGTTATT...TTTGTCTTGATC/TTTGTCTTGATC...TGTAG|ATG 0 1 94.592

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