Snakemake utils
Project description
A set of utility function for use in snakemake. Currently, for line-based transformations.
Functions:
map_chars(cmap) - will translate characters using the given dictionary
cmap.del_char_idx(idx) - will delete the char at the given index.
del_char(char) - will delete all characters matching
charparam.del_line(regex) - will delete line if it matches the given regex.
apply(trans, encoding, in_files, out_files) - will apply all transformations given in
translist to all lines in thein_fileslist producing output files from theout_fileslist.
Example
rule fixchars:
input:
"{natfile}.nat"
output:
"{natfile}-ch.nat"
message:
"Fixing/deleting chars/lines..."
run:
from snakemakeutils import del_char_val, del_char_idx, apply
trans = [del_char_val('\x00'), del_char_idx(0)]
apply(trans, "latin1", input, output)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
snakemakeutils-0.1.2.tar.gz
(3.0 kB
view details)
File details
Details for the file snakemakeutils-0.1.2.tar.gz.
File metadata
- Download URL: snakemakeutils-0.1.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
254650a4b32629b4b5957e37e72b879453d4b5b09a66fb45ee0395cfaa6c00b4
|
|
| MD5 |
ddc21e4d3de95d0be02356b336381153
|
|
| BLAKE2b-256 |
3d922332045acc02f37f913b7db27ae9c7fbcf0b01a8969ebc515aa9022995d4
|