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)

13 rows where transcript_id = 6831662

✎ View and edit SQL

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
35541480 GT-AG 0 0.0285108009577349 5352 rna-XM_009701958.1 6831662 1 47030 52381 Cariama cristata 54380 GTG|GTAACTTCTC...CATTTCTTAAGA/TTCCTGTTGATA...TCCAG|ACT 0 1 3.717
35541481 GT-AG 0 1.000000099473604e-05 1120 rna-XM_009701958.1 6831662 2 45770 46889 Cariama cristata 54380 AAG|GTAAAAAGCG...GATATTTTTGTG/GAAATACTAACT...ACAAG|GAG 2 1 12.392
35541482 GT-AG 0 4.496147260980642e-05 1307 rna-XM_009701958.1 6831662 3 44245 45551 Cariama cristata 54380 GCA|GTAAGTATTT...AACTTGTTATAA/AAACTTGTTATA...CACAG|CAA 1 1 25.898
35541483 GT-AG 0 4.8808750216772e-05 3117 rna-XM_009701958.1 6831662 4 41015 44131 Cariama cristata 54380 CAG|GTACTAAATA...TTCTCCTTAAAT/AATGTTTTTATG...CCAAG|ATA 0 1 32.9
35541484 GT-AG 0 1.000000099473604e-05 1021 rna-XM_009701958.1 6831662 5 39933 40953 Cariama cristata 54380 AAG|GTGAGAGATT...TTAGTCTTAACA/TCAATTCTAATT...TGCAG|GTG 1 1 36.679
35541485 GT-AG 0 1.000000099473604e-05 1280 rna-XM_009701958.1 6831662 6 38594 39873 Cariama cristata 54380 CTG|GTAAGCAGAA...TGTGTTTTATTT/CTGTGTTTTATT...CTTAG|GAT 0 1 40.335
35541486 GT-AG 0 0.0005670393608425 2383 rna-XM_009701958.1 6831662 7 36176 38558 Cariama cristata 54380 ATT|GTAAGTTTCT...TTTCTCTTTGCC/TTTGTTTTCAAA...TGCAG|AAA 2 1 42.503
35541487 GT-AG 0 1.000000099473604e-05 3147 rna-XM_009701958.1 6831662 8 32974 36120 Cariama cristata 54380 GAG|GTAAGAATTA...TGACTGTTGAAT/AGATAACTCATC...TTCAG|TTT 0 1 45.911
35541488 GT-AG 0 0.0088038312517099 539 rna-XM_009701958.1 6831662 9 32352 32890 Cariama cristata 54380 AAC|GTATGTAATT...TTTTCCTCAATT/TTTTTCCTCAAT...TTCAG|TGC 2 1 51.053
35541489 GT-AG 0 1.000000099473604e-05 1142 rna-XM_009701958.1 6831662 11 31058 32199 Cariama cristata 54380 CAA|GTAAGGGAAG...CTCTCCCTCATG/CTCTCCCTCATG...CATAG|CCT 2 1 60.347
35541490 GT-AG 0 1.000000099473604e-05 6762 rna-XM_009701958.1 6831662 12 24142 30903 Cariama cristata 54380 AGG|GTGAGTAGTT...TTAACTATAACT/GCAATATTAACT...TACAG|AAT 0 1 69.888
35541491 GT-AG 0 4.493926864005505e-05 1819 rna-XM_009701958.1 6831662 13 22224 24042 Cariama cristata 54380 AAG|GTACGTTCAA...AGGTTCTTAGGC/TTGATCCTAAAG...TCCAG|CTC 0 1 76.022
35541492 GT-AG 0 0.0001271967208409 273 rna-XM_009701958.1 6831662 14 21809 22081 Cariama cristata 54380 ACG|GTAAGTTACG...TTTTCTTTGATT/TTTTCTTTGATT...TTCAG|ACG 1 1 84.82

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