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)

11 rows where transcript_id = 4072580

✎ View and edit SQL

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
21102109 GT-AG 0 1.000000099473604e-05 67 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 1 266501 266567 Basidiobolus meristosporus 423460 AGA|GTGGGTGCAT...CTTCCCTTGAAC/TTCGGCTTGACT...CTTAG|TCC 0 1 13.786
21102110 GT-AG 0 1.2494136254541368e-05 55 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 2 266373 266427 Basidiobolus meristosporus 423460 AGG|GTAGAGTCGC...TTCCTCTTAGTA/TAGTAACTTACT...CAAAG|GAC 1 1 18.511
21102111 GT-AG 0 1.000000099473604e-05 57 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 3 266230 266286 Basidiobolus meristosporus 423460 GAG|GTAAGGCGGC...GTTGACTTACAG/GGTTGACTTACA...CCTAG|TGC 0 1 24.078
21102112 GT-AG 0 1.000000099473604e-05 54 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 4 266005 266058 Basidiobolus meristosporus 423460 AAG|GTACGATCCC...TCCATTTTGTCG/CCGCAGCTCACC...CGTAG|GCG 0 1 35.146
21102113 GT-AG 0 1.5457304460922373e-05 57 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 5 265777 265833 Basidiobolus meristosporus 423460 GAG|GTAGTTTCGA...CCCACCTAACCT/CTTGGTCCCATC...CACAG|GAA 0 1 46.214
21102114 GT-AG 0 1.000000099473604e-05 58 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 6 265569 265626 Basidiobolus meristosporus 423460 AAG|GTAAGTCCCT...ATGTCCATGACC/ATGTCCATGACC...CACAG|GAA 0 1 55.922
21102115 GT-AG 0 1.000000099473604e-05 64 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 7 265400 265463 Basidiobolus meristosporus 423460 CAG|GTAAGTGTTG...CCAGCCATACCC/CCGTCGCTGAGC...GACAG|TTT 0 1 62.718
21102116 GT-AG 0 1.000000099473604e-05 54 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 8 265188 265241 Basidiobolus meristosporus 423460 CAA|GTAAGCGAGC...GAACCTGTACTT/TACTTGCTAACC...CTCAG|TCT 2 1 72.945
21102117 GT-AG 0 1.000000099473604e-05 58 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 9 265081 265138 Basidiobolus meristosporus 423460 AAG|GTGGGTCCCC...ACATCCTCCACT/CCTCCACTCACC...TCTAG|GAA 0 1 76.117
21102118 GT-AG 0 0.1256202137145896 58 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 10 264905 264962 Basidiobolus meristosporus 423460 TCG|GTAACCCTTG...TTGCCCTCAGCC/CCCTTGCTCATC...CGTAG|TCC 1 1 83.754
21102119 GT-AG 0 1.000000099473604e-05 59 rna-gnl|WGS:MCFE|K493DRAFT_mRNA200927 4072580 11 264688 264746 Basidiobolus meristosporus 423460 AAG|GTTCGTCCAC...CGGCCATTATTG/TATGTACTGACA...TTTAG|GCG 0 1 93.981

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