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 = 17888366

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
95730433 GT-AG 0 1.000000099473604e-05 255 rna-XM_002166676.4 17888366 2 24067280 24067534 Hydra vulgaris 6087 GAG|GTAAGAGCTT...TTTTTTCTAATT/TTTTTTCTAATT...AAAAG|GAG 0 1 13.337
95730434 GT-AG 0 1.000000099473604e-05 9777 rna-XM_002166676.4 17888366 3 24067700 24077476 Hydra vulgaris 6087 GAG|GTGCATTGAA...GTTTTCTTACTT/TGTTTTCTTACT...ATTAG|GCT 0 1 17.738
95730435 GT-AG 0 1.000000099473604e-05 2761 rna-XM_002166676.4 17888366 4 24077612 24080372 Hydra vulgaris 6087 CAG|GTTTAAGATT...CGTTTTTTTGCA/TTTTTTTGCAAC...ACTAG|CAA 0 1 21.339
95730436 GT-AG 0 0.02857703729232 6811 rna-XM_002166676.4 17888366 5 24080469 24087279 Hydra vulgaris 6087 CAG|GTATTTTTTT...TTGATTTTATTA/TATGTATTGATT...AATAG|GAT 0 1 23.9
95730437 GT-AG 0 0.0098631440459306 25906 rna-XM_002166676.4 17888366 6 24087457 24113362 Hydra vulgaris 6087 ATG|GTATTATTTT...GTGTCTTTGAAT/TCTTTGTTTACT...TTTAG|CGT 0 1 28.621
95730438 GT-AG 0 1.000000099473604e-05 404 rna-XM_002166676.4 17888366 7 24113531 24113934 Hydra vulgaris 6087 CTT|GTGAGCAGTT...CTTTTCTAATTT/TCTTTTCTAATT...AATAG|GTT 0 1 33.102
95730439 GT-AG 0 0.0103125539561057 1916 rna-XM_002166676.4 17888366 8 24114030 24115945 Hydra vulgaris 6087 ATG|GTAACTATTA...ATTTTTTTGATA/ATTTTTTTGATA...TTTAG|GTG 2 1 35.636
95730440 GT-AG 0 0.0002393441349951 21004 rna-XM_002166676.4 17888366 9 24116069 24137072 Hydra vulgaris 6087 AAG|GTTTATATTT...AAATCTTTATAT/TAAATCTTTATA...ATTAG|AAT 2 1 38.917
95730441 GT-AG 0 5.968960996714045e-05 5741 rna-XM_002166676.4 17888366 10 24137291 24143031 Hydra vulgaris 6087 TAG|GTAAACTATT...ATGTTCGTAAAT/TTCATTTTCAGT...TTTAG|GAA 1 1 44.732
95730442 GT-AG 0 0.0005938168654147 1323 rna-XM_002166676.4 17888366 11 24143224 24144546 Hydra vulgaris 6087 CAG|GTTTTTTTAT...TTTTTCTAGACT/TTTTTGTTTATA...TTTAG|ACA 1 1 49.853
95730443 GT-AG 0 1.000000099473604e-05 5560 rna-XM_002166676.4 17888366 12 24145647 24151206 Hydra vulgaris 6087 AAG|GTTGTTTTTC...TATATATTAAAT/TATATATTAAAT...TTTAG|CCA 0 1 79.194
95730444 GT-AG 0 1.000000099473604e-05 103 rna-XM_002166676.4 17888366 13 24151350 24151452 Hydra vulgaris 6087 CAG|GTTTTAAGCT...ATATTTTTAATA/ATATTTTTAATA...TCAAG|GCC 2 1 83.009
95730445 GT-AG 0 0.0819273742913472 2143 rna-XM_002166676.4 17888366 14 24151511 24153653 Hydra vulgaris 6087 GAG|GTATGTTTTT...CTCTTTTTAATA/CTCTTTTTAATA...TTAAG|CCT 0 1 84.556
95736314 GT-AG 0 0.0675533795609024 2920 rna-XM_002166676.4 17888366 1 24064041 24066960 Hydra vulgaris 6087 CAG|GTATCAAATG...TATTTCTTATTT/TTATTTCTTATT...ATTAG|AAA   0 4.935

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