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 = 2107318
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
11507070 | GT-AG | 0 | 1.000000099473604e-05 | 13101 | rna-XM_009871172.1 2107318 | 1 | 12611 | 25711 | Apaloderma vittatum 57397 | AAG|GTGAAGCATT...ATGTCCTTTTTT/GTATCATTCACC...TTCAG|GAG | 0 | 1 | 7.123 |
11507071 | GT-AG | 0 | 1.000000099473604e-05 | 100 | rna-XM_009871172.1 2107318 | 2 | 25736 | 25835 | Apaloderma vittatum 57397 | AAG|GTCAGGAAAT...TTTTCCTTTTCT/TTTGTCTTCATC...AACAG|AAA | 0 | 1 | 9.315 |
11507072 | GT-AG | 0 | 1.000000099473604e-05 | 2465 | rna-XM_009871172.1 2107318 | 3 | 25869 | 28333 | Apaloderma vittatum 57397 | GAG|GTAAGACAAG...ATAAATTTGAAA/ATAAATTTGAAA...GACAG|AGT | 0 | 1 | 12.329 |
11507073 | GT-AG | 0 | 1.000000099473604e-05 | 5748 | rna-XM_009871172.1 2107318 | 4 | 28451 | 34198 | Apaloderma vittatum 57397 | GAG|GTAAGCAAAT...TTCCTCCTGATG/CCTCTGCTAATT...TACAG|GAC | 0 | 1 | 23.014 |
11507074 | GT-AG | 0 | 4.7801196113561695e-05 | 3758 | rna-XM_009871172.1 2107318 | 5 | 34331 | 38088 | Apaloderma vittatum 57397 | GAG|GTAAGTTTTG...ACTCCCTTTGCT/CCGGTGGTGACA...TCAAG|TCC | 0 | 1 | 35.068 |
11507075 | GT-AG | 0 | 1.000000099473604e-05 | 2899 | rna-XM_009871172.1 2107318 | 6 | 38218 | 41116 | Apaloderma vittatum 57397 | GAG|GTAAGTTGAG...TCCATTTTGATT/TCCATTTTGATT...TGCAG|TCC | 0 | 1 | 46.849 |
11507076 | GT-AG | 0 | 3.3779447747465884e-05 | 4274 | rna-XM_009871172.1 2107318 | 7 | 41261 | 45534 | Apaloderma vittatum 57397 | CCT|GTTAGTTTTC...CATGTCATAACT/ACCTGACTGACC...TTCAG|GCG | 0 | 1 | 60.0 |
11507077 | GT-AG | 0 | 1.000000099473604e-05 | 491 | rna-XM_009871172.1 2107318 | 8 | 45577 | 46067 | Apaloderma vittatum 57397 | GAC|GTGAGTCCAG...TAGTTCTAATTT/TTAGTTCTAATT...TGCAG|TTG | 0 | 1 | 63.836 |
11507078 | GT-AG | 0 | 1.3839582230428023e-05 | 1841 | rna-XM_009871172.1 2107318 | 9 | 46144 | 47984 | Apaloderma vittatum 57397 | CTG|GTACGTACCC...TTGCCCTTCCTG/ACTGGCGTAACA...AATAG|GAC | 1 | 1 | 70.776 |
11507079 | GT-AG | 0 | 1.000000099473604e-05 | 8136 | rna-XM_009871172.1 2107318 | 10 | 48038 | 56173 | Apaloderma vittatum 57397 | GAT|GTAAGTGGAC...CAGTCTTTGTCC/ACTAATCTCAGT...TCCAG|TTA | 0 | 1 | 75.616 |
11507080 | GT-AG | 0 | 3.001729548903148e-05 | 1272 | rna-XM_009871172.1 2107318 | 11 | 56344 | 57615 | Apaloderma vittatum 57397 | AAG|GTAAGTTCGC...CCTCCTTTAACC/CCTCCTTTAACC...TTCAG|GGA | 2 | 1 | 91.142 |
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]);