Skip to content

Commit

Permalink
readme update and optim for multi_muscle_align increased
Browse files Browse the repository at this point in the history
  • Loading branch information
dereneaton committed Mar 31, 2016
1 parent cb7c99c commit 011aa63
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Tutorials

Documentation is in the works_, for now there are working example tutorials_.

.. _tutorials: http://nbviewer.ipython.org/github/dereneaton/ipyrad/tree/master/tests/
.. _tutorials: http://ipyrad.readthedocs.org/en/latest/userguide.html

.. _works: http://ipyrad.readthedocs.org/en/latest/
.. _works: http://ipyrad.readthedocs.org/en/latest/

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial_intro_cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ separate line with a tab between them.

.. code-block:: bash
cat ./data/sim_rad_test_barcodes.txt
cat ./ipsimdata/sim_rad_test_barcodes.txt
.. parsed-literal::
1A_0 CATCAT
Expand Down
6 changes: 3 additions & 3 deletions ipyrad/assemble/cluster_within.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,9 @@ def multi_muscle_align(data, sample, ipyclient):
## get the number of clusters
clustfile = os.path.join(data.dirs.clusts, sample.name+".clust.gz")
clustio = gzip.open(clustfile, 'rb')
optim = 100
if sample.stats.clusters_total > 500:
optim = int(sample.stats.clusters_total/len(ipyclient))//2
optim = 1000
#if sample.stats.clusters_total > 500:
# optim = int(sample.stats.clusters_total/len(ipyclient))//2
LOGGER.debug("optim for align chunks: %s", optim)

## write optim clusters to each tmp file
Expand Down

0 comments on commit 011aa63

Please sign in to comment.