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

✎ 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
109622681 GT-AG 0 1.000000099473604e-05 101 rna-XM_042653761.1 20429291 1 20142905 20143005 Macadamia integrifolia 60698 AAG|GTCAGTTTAC...TTTCTTTTGATT/TTTCTTTTGATT...AAAAG|GGG 1 1 3.546
109622682 GT-AG 0 1.000000099473604e-05 89 rna-XM_042653761.1 20429291 2 20143323 20143411 Macadamia integrifolia 60698 AAG|GTGATTTCTT...GTTTTCTGGATC/ACCTCTTTTACT...TTTAG|GTT 0 1 11.997
109622683 GT-AG 0 8.69135346134204e-05 92 rna-XM_042653761.1 20429291 3 20143573 20143664 Macadamia integrifolia 60698 AAA|GTAAGTTGAG...CCTGTCTTAATT/CTTAATTTGATT...TGTAG|AAA 2 1 16.289
109622684 GT-AG 0 1.000000099473604e-05 125 rna-XM_042653761.1 20429291 4 20144848 20144972 Macadamia integrifolia 60698 TTG|GTAATGCATG...ATATTTTTCTTT/TTTATACATATT...TTCAG|GTG 0 1 47.827
109622685 GT-AG 0 0.0048355573025543 5182 rna-XM_042653761.1 20429291 5 20145165 20150346 Macadamia integrifolia 60698 ACG|GTATGGTTCT...ACATCCTTAAGT/TTGATTCTGACA...GCCAG|ATA 0 1 52.946
109622686 GT-AG 0 1.000000099473604e-05 154 rna-XM_042653761.1 20429291 6 20151016 20151169 Macadamia integrifolia 60698 AAG|GTGTGAATAG...TGTATTTTGAGT/TGTATTTTGAGT...TACAG|GAG 0 1 70.781
109622687 GT-AG 0 1.000000099473604e-05 158 rna-XM_042653761.1 20429291 7 20151347 20151504 Macadamia integrifolia 60698 AAG|GTGACTGGCT...TTGTCCTTTTCA/CATAAACTCATC...TTCAG|TAC 0 1 75.5
109622688 GT-AG 0 1.000000099473604e-05 70 rna-XM_042653761.1 20429291 8 20151573 20151642 Macadamia integrifolia 60698 TTG|GTAAGACCTT...GAAATCTAACTA/GTGTTACTGATT...TTCAG|TGA 2 1 77.313
109622689 GT-AG 0 1.000000099473604e-05 87 rna-XM_042653761.1 20429291 9 20151866 20151952 Macadamia integrifolia 60698 AAG|GTTTGAGAAC...ATGGTCTAATAA/AATGGTCTAATA...CTTAG|GTG 0 1 83.258
109622690 GT-AG 0 1.9970084188642057e-05 74 rna-XM_042653761.1 20429291 10 20152053 20152126 Macadamia integrifolia 60698 AAG|GTAATCACGA...GTTTCTTTATAA/TGTTTCTTTATA...TGCAG|GAA 1 1 85.924
109622691 GT-AG 0 0.0006750391767843 83 rna-XM_042653761.1 20429291 11 20152243 20152325 Macadamia integrifolia 60698 AAG|GTATGTATGG...TGTGCTTTGAAC/TGTGCTTTGAAC...GTTAG|GAC 0 1 89.016
109622692 GT-AG 0 0.0003139684426318 1523 rna-XM_042653761.1 20429291 12 20152384 20153906 Macadamia integrifolia 60698 CAG|GTACATTTGC...TTCATTTGGATT/AGGAAATTCATT...TGCAG|ATA 1 1 90.563
109622693 GT-AG 0 0.0018843202325049 2495 rna-XM_042653761.1 20429291 13 20154059 20156553 Macadamia integrifolia 60698 AAG|GTATGCCATT...TATTATTTAATT/ATTTAATTCATT...ATCAG|GGC 0 1 94.615

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