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)
10 rows where transcript_id = 32241368
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 180024573 | GT-AG | 0 | 1.000000099473604e-05 | 1942 | rna-XM_035733912.1 32241368 | 1 | 41085 | 43026 | Schistosoma haematobium 6185 | ATG|GTGATCAACC...GTTTGAGTGATG/GTTTGAGTGATG...GAAAG|CCA | 0 | 1 | 5.644 |
| 180024574 | GT-AG | 0 | 3.586640923906036e-05 | 71 | rna-XM_035733912.1 32241368 | 2 | 43517 | 43587 | Schistosoma haematobium 6185 | ACA|GTGGCTAGAG...CTTTTTCTAATG/CTTTTTCTAATG...TTAAG|GCT | 1 | 1 | 21.815 |
| 180024575 | GT-AG | 0 | 1.000000099473604e-05 | 64 | rna-XM_035733912.1 32241368 | 3 | 43645 | 43708 | Schistosoma haematobium 6185 | ACC|GTAAGTGTCC...TTGCTCGTATAT/TCGTATATCATG...GTTAG|GTA | 1 | 1 | 23.696 |
| 180024576 | GT-AG | 0 | 1.000000099473604e-05 | 538 | rna-XM_035733912.1 32241368 | 4 | 44010 | 44547 | Schistosoma haematobium 6185 | CAC|GTCCATCCAC...CTACTCATATCT/TTTCTACTCATA...TGAAG|TGC | 2 | 1 | 33.63 |
| 180024577 | GT-AG | 0 | 0.0004141788046789 | 48 | rna-XM_035733912.1 32241368 | 5 | 44666 | 44713 | Schistosoma haematobium 6185 | TTC|GTAATTTCTT...TTGGTTTTTTCT/GTTTTTTCTAAC...AGTAG|GTT | 0 | 1 | 37.525 |
| 180024578 | GT-AG | 0 | 0.0001648814588154 | 48 | rna-XM_035733912.1 32241368 | 6 | 44757 | 44804 | Schistosoma haematobium 6185 | TAC|GTAGATAATT...ACTCTTTTGATA/ACTCTTTTGATA...TATAG|TAG | 1 | 1 | 38.944 |
| 180024579 | GT-AG | 0 | 0.0001863139109573 | 962 | rna-XM_035733912.1 32241368 | 7 | 44877 | 45838 | Schistosoma haematobium 6185 | TGG|GTATTGGTTG...TGGTTATTATCA/ATGGTTATTATC...TATAG|ATG | 1 | 1 | 41.32 |
| 180024580 | GT-AG | 0 | 9.000791976272544e-05 | 742 | rna-XM_035733912.1 32241368 | 8 | 47074 | 47815 | Schistosoma haematobium 6185 | CAA|GTATGTGATC...CACATGTTAGCT/AATTGTTTCATA...TTCAG|GAT | 0 | 1 | 82.079 |
| 180024581 | GT-AG | 0 | 0.0001806023512479 | 1550 | rna-XM_035733912.1 32241368 | 9 | 47939 | 49488 | Schistosoma haematobium 6185 | TTC|GTAAACAGCA...GAAATCTCATCA/CGAAATCTCATC...TACAG|AAG | 0 | 1 | 86.139 |
| 180024582 | GT-AG | 0 | 1.000000099473604e-05 | 8162 | rna-XM_035733912.1 32241368 | 10 | 49618 | 57779 | Schistosoma haematobium 6185 | CCG|GTAAGAGTAG...ATATCCATAGTT/GTTCAGTTCATA...GTTAG|TTG | 0 | 1 | 90.396 |
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]);