-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mary O'Neill
committed
Dec 11, 2015
1 parent
7d15f7d
commit 4bff623
Showing
1 changed file
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# submitFiles | ||
submitFiles | ||
=========== | ||
|
||
Condor submit files (and executable where applicable) | ||
|
||
File Descriptions | ||
================= | ||
fasttree.submit | ||
--------------- | ||
This submit file executes the fasttree program from the /opt/PepPrograms folder. The "10" in the arguments line specifies the desired number of threads, while the "dummy_snps.fasta" corresponds to the input file (your snp alignment). | ||
|
||
>condor_submit fasttree.submit | ||
run_parsnp.submit | ||
----------------- | ||
This submit file executes a corresponding bash script (run_parsnp.sh) with three arguments: a compressed folder (.tar.gz) containing the genomes to be assembled (fasta format), the path to the reference genome (stored in opt/data), and the number of threads to use. | ||
|
||
>condor_submit run_parsnp.submit | ||
run_parsnp.sh | ||
------------- | ||
This is a simple bash script that will unpack the compressed genomes, make and move them into a directory, execute parsnp, and finally compress parsnp's output (a folder containing various files) so that it can be transferred back. |