We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We could process the 3 to bigwig in parallel like this
mkfifo starts.wig mkfifo ends.wig mkfifo core.wig wigToBigWig -clip starts.wig `refgenie seek hg38/fasta.chrom_sizes` starts.bw & wigToBigWig -clip ends.wig `refgenie seek hg38/fasta.chrom_sizes` ends.bw & wigToBigWig -clip core.wig `refgenie seek hg38/fasta.chrom_sizes` core.bw & cargo run uniwig ... --starts starts.wig --ends ends.wig --core core.wig rm starts.wig rm ends.wig rm core.wig
could probably do this from within rust: https://docs.rs/nix/latest/nix/unistd/fn.mkfifo.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We could process the 3 to bigwig in parallel like this
could probably do this from within rust: https://docs.rs/nix/latest/nix/unistd/fn.mkfifo.html
The text was updated successfully, but these errors were encountered: