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

✎ 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
99339920 GT-AG 0 0.0015837993607221 341 rna-XM_012223723.3 18602141 2 1202180 1202520 Jatropha curcas 180498 AAG|GTAACCGTGT...TATGCATTGAAT/TGTGGTTTGACA...TATAG|TGG 0 1 20.588
99339921 GT-AG 0 0.909327997938916 115 rna-XM_012223723.3 18602141 3 1201762 1201876 Jatropha curcas 180498 GGG|GTATCTATTT...CATGTCTTCACC/CATGTCTTCACC...TATAG|GCT 0 1 26.49
99339922 GT-AG 0 4.22628290787526e-05 465 rna-XM_012223723.3 18602141 4 1201186 1201650 Jatropha curcas 180498 AAT|GTAAATCCCC...GTCTCCTTCTCT/CCTTCTCTCATT...AACAG|ATG 0 1 28.652
99339923 GT-AG 0 0.0007503430534541 934 rna-XM_012223723.3 18602141 5 1200141 1201074 Jatropha curcas 180498 GAG|GTATGCGCTA...ATTGTCCTAATA/TTTATGTTGATT...TATAG|GAA 0 1 30.814
99339924 GT-AG 0 45.4099993069029 3149 rna-XM_012223723.3 18602141 6 1194157 1197305 Jatropha curcas 180498 GAG|GTATCCTTTT...CCTTCCTTTTCT/ATGTATTTGATG...TGCAG|AGT 0 1 86.034
99339925 GT-AG 0 2.3494621583733004e-05 590 rna-XM_012223723.3 18602141 7 1193405 1193994 Jatropha curcas 180498 GAG|GTAACATGAA...ATTTTTCTATCA/ATGAAATTGACA...TGTAG|GAG 0 1 89.19
99339926 GT-AG 0 1.000000099473604e-05 78 rna-XM_012223723.3 18602141 8 1193210 1193287 Jatropha curcas 180498 AAG|GTAATGCCTT...ATTCCTATATTT/TATTTACTCATA...TACAG|GGA 0 1 91.469
99339927 GT-AG 0 1.000000099473604e-05 87 rna-XM_012223723.3 18602141 9 1193019 1193105 Jatropha curcas 180498 CAG|GTTTGAAATA...TTGTTTTTATTT/TTTGTTTTTATT...TCCAG|ATA 2 1 93.494
99339928 GT-AG 0 1.000000099473604e-05 1606 rna-XM_012223723.3 18602141 10 1191275 1192880 Jatropha curcas 180498 CAG|GTAGGGAAAG...TACCTGTTAATT/TAATTTCTGAGT...GGCAG|CTG 2 1 96.182
99339929 GT-AG 0 1.000000099473604e-05 447 rna-XM_012223723.3 18602141 11 1190740 1191186 Jatropha curcas 180498 GAT|GTAAGAAATC...TACCCCTTATTT/TTTTTTTTTACC...AGCAG|ATC 0 1 97.896
99341221 GT-AG 0 4.0891424492015945e-05 2440 rna-XM_012223723.3 18602141 1 1203073 1205512 Jatropha curcas 180498 AAG|GTACATTAAC...TGCTTCTGATTC/ATGCTTCTGATT...AACAG|GGA   0 11.18

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