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)

12 rows where transcript_id = 20429333

✎ 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
109622994 GT-AG 0 1.0490186653986104e-05 3668 rna-XM_042653243.1 20429333 1 34079229 34082896 Macadamia integrifolia 60698 CAG|GTTCATTCCC...ATTTTCTGATTT/GATTTTCTGATT...AACAG|ATG 2 1 4.377
109622995 GT-AG 0 1.000000099473604e-05 732 rna-XM_042653243.1 20429333 2 34083158 34083889 Macadamia integrifolia 60698 ATG|GTAATTATGA...TTCTTCTGATAT/CTTCTTCTGATA...TTCAG|GTA 2 1 13.515
109622996 GT-AG 0 1.000000099473604e-05 99 rna-XM_042653243.1 20429333 3 34084035 34084133 Macadamia integrifolia 60698 AAG|GTGGTTTCGG...GTGATTTTAATT/GTGATTTTAATT...GACAG|GAC 0 1 18.592
109622997 GT-AG 0 1.000000099473604e-05 86 rna-XM_042653243.1 20429333 4 34084194 34084279 Macadamia integrifolia 60698 CAA|GTGAGCATTC...ACTTCGTTGATT/ATGATGTTCATT...TGTAG|GTA 0 1 20.693
109622998 GT-AG 0 1.3778400775837116e-05 813 rna-XM_042653243.1 20429333 5 34084376 34085188 Macadamia integrifolia 60698 GAT|GTGAGTATCT...TTTTCCTTATCT/TTTCTTTTCACT...AACAG|ATT 0 1 24.055
109622999 GT-AG 0 1.000000099473604e-05 2142 rna-XM_042653243.1 20429333 6 34085609 34087750 Macadamia integrifolia 60698 GTT|GTAAGTGACT...TGGATTTTAATA/ATTCTACTGACT...TGTAG|GGA 0 1 38.761
109623000 GT-AG 0 7.445925220540886e-05 92 rna-XM_042653243.1 20429333 7 34087892 34087983 Macadamia integrifolia 60698 CAG|GTTTGATTGC...TATTCCTTGATA/ATATCTCTTACT...CTTAG|GAA 0 1 43.697
109623001 GT-AG 0 1.000000099473604e-05 2651 rna-XM_042653243.1 20429333 8 34088155 34090805 Macadamia integrifolia 60698 CAA|GTGAGTGTAT...TGTCCTTTAATT/CTTTAATTTATG...GACAG|GGT 0 1 49.685
109623002 GT-AG 0 1.000000099473604e-05 92 rna-XM_042653243.1 20429333 9 34091064 34091155 Macadamia integrifolia 60698 GAG|GTTCGTTGAA...TGAGTTTTATTC/CTGAGTTTTATT...TGTAG|ATT 0 1 58.718
109623003 GT-AG 0 0.0001522580791642 395 rna-XM_042653243.1 20429333 10 34091305 34091699 Macadamia integrifolia 60698 ACA|GTAAGCATAA...ATATCTGTAATC/ATATCTGTAATC...TTCAG|GGG 2 1 63.936
109623004 GT-AG 0 1.000000099473604e-05 4518 rna-XM_042653243.1 20429333 11 34092273 34096790 Macadamia integrifolia 60698 GTG|GTCAGTCTCT...TTATATTTAAAG/ATTAATTTGATG...TGAAG|GTA 2 1 83.999
109623005 GT-AG 0 1.000000099473604e-05 618 rna-XM_042653243.1 20429333 12 34097065 34097682 Macadamia integrifolia 60698 AAG|GTAAATGAGC...AAGTACTTATTC/TAAGTACTTATT...TGCAG|CTT 0 1 93.592

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