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 = 33869962
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
189664026 | GT-AG | 0 | 5.066821351798242e-05 | 100 | rna-XM_016748695.1 33869962 | 1 | 969383 | 969482 | Spizellomyces punctatus 109760 | GAA|GTAAGTCCTG...ACCTTCTTATTT/TTGTATTTTATT...ATCAG|CAG | 0 | 1 | 3.625 |
189664027 | GT-AG | 0 | 5.281238469027279e-05 | 58 | rna-XM_016748695.1 33869962 | 2 | 969006 | 969063 | Spizellomyces punctatus 109760 | ACA|GTAAGGTTTG...TTTCTCTGAATC/CTGAATCTCATC...ATTAG|TGG | 1 | 1 | 14.961 |
189664028 | GT-AG | 0 | 1.000000099473604e-05 | 60 | rna-XM_016748695.1 33869962 | 3 | 968454 | 968513 | Spizellomyces punctatus 109760 | ATG|GTGCATTTTC...CCATTTTTGGTA/TTGGTAGTCACA...TCTAG|GCG | 1 | 1 | 32.445 |
189664029 | GT-AG | 0 | 1.000000099473604e-05 | 98 | rna-XM_016748695.1 33869962 | 4 | 968298 | 968395 | Spizellomyces punctatus 109760 | CAG|GTACAGTGTT...CGTGGCTTACTG/TCGTGGCTTACT...AAAAG|GTA | 2 | 1 | 34.506 |
189664030 | GT-AG | 0 | 1.000000099473604e-05 | 65 | rna-XM_016748695.1 33869962 | 5 | 968153 | 968217 | Spizellomyces punctatus 109760 | CTG|GTGTGTCTAT...AAAACATTAATT/AAAACATTAATT...TATAG|ATC | 1 | 1 | 37.349 |
189664031 | GT-AG | 0 | 1.000000099473604e-05 | 60 | rna-XM_016748695.1 33869962 | 6 | 967972 | 968031 | Spizellomyces punctatus 109760 | CCG|GTCAGTAACC...ATATCCTCATAT/CATATCCTCATA...TGTAG|GGG | 2 | 1 | 41.649 |
189664032 | GT-AG | 0 | 1.000000099473604e-05 | 61 | rna-XM_016748695.1 33869962 | 7 | 967865 | 967925 | Spizellomyces punctatus 109760 | TTG|GTAAGCAGAC...AACTCTGTATTG/ATCTATATAAAA...GACAG|GTT | 0 | 1 | 43.284 |
189664033 | GT-AG | 0 | 1.000000099473604e-05 | 78 | rna-XM_016748695.1 33869962 | 8 | 967625 | 967702 | Spizellomyces punctatus 109760 | GAA|GTGAGTATTA...CTAATGTTGACC/CTAATGTTGACC...AAAAG|TTC | 0 | 1 | 49.041 |
189664034 | GT-AG | 0 | 1.000000099473604e-05 | 63 | rna-XM_016748695.1 33869962 | 9 | 967533 | 967595 | Spizellomyces punctatus 109760 | TAG|GTGAGAATGC...GTGCTCATACTA/ACAGTGCTCATA...ATTAG|GAC | 2 | 1 | 50.071 |
189664035 | GT-AG | 0 | 1.000000099473604e-05 | 72 | rna-XM_016748695.1 33869962 | 10 | 967331 | 967402 | Spizellomyces punctatus 109760 | GTG|GTCAGTATGA...GTGACCTTACTC/CGTGACCTTACT...TTCAG|CTG | 0 | 1 | 54.691 |
189664036 | GT-AG | 0 | 1.000000099473604e-05 | 85 | rna-XM_016748695.1 33869962 | 11 | 966424 | 966508 | Spizellomyces punctatus 109760 | CTG|GTAGGTGTCA...ATCTCTGTAACG/ACGTACTTGAAT...CAAAG|ATC | 0 | 1 | 83.902 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);