Skip to content

Commit

Permalink
now with more informed pipe_char comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kitchWWW committed Apr 10, 2018
1 parent 72adea2 commit e016209
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion database/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@
MCL_PATH = 'mcl'
RAXML_PATH = 'raxml'

# command line character to pipe output to a file. on Macs, use ' &> '. on unix use ' > '
# command line character to pipe output to a file.
# On most shells, use ' &> '.
PIPE_CHAR = ' > '
# if the & is interpreted as launching a new subprocess instead of the pipe,
# a simple ' > ' will work instead.


############### VARIABLES USERS MIGHT NEED TO CHANGE ###############

Expand Down
7 changes: 5 additions & 2 deletions personalCompare/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@
# or simply the name of the program if it can be accessed from the command line
# for example
# RAXML_PATH = '/Users/Admin/programs/standard-RAxML-master/raxmlHPC-SSE3'
# We have all of ours on our path as the following names

USEARCH_PATH = 'usearch61'
MAFFT_PATH = 'mafft'
MCL_PATH = 'mcl'
RAXML_PATH = 'raxml'

# command line character to pipe output to a file. on Macs, use ' &> '. on unix use ' > '
# command line character to pipe output to a file.
# On most shells, use ' &> '.
PIPE_CHAR = ' > '
# if the & is interpreted as launching a new subprocess instead of the pipe,
# a simple ' > ' will work instead.


############### VARIABLES USERS MIGHT NEED TO CHANGE ###############
Expand Down

0 comments on commit e016209

Please sign in to comment.