Skip to content

Commit

Permalink
Fix references to load_assembly to point to load_json
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacovercast committed Jul 29, 2018
1 parent b3ad7ba commit e402946
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/API_user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ params file for use by the *ipyrad* command line tool.
data1.save()
## load assembly object
data1 = ip.load_assembly("pedicularis/data1.json")
data1 = ip.load_json("pedicularis/data1.json")
## write params file for use by the CLI
data1.write_params()
2 changes: 1 addition & 1 deletion docs/API_userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ params file for use by the *ipyrad* command line tool.
data1.save()
## load assembly object
data1 = ip.load_assembly("pedicularis/data1.json")
data1 = ip.load_json("pedicularis/data1.json")
## write params file for use by the CLI
data1.write_params()
2 changes: 1 addition & 1 deletion docs/plotting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ visualize.
.. code-block:: python
## load the assembly that is passed step 3
data1 = ip.load.load_assembly("tests/data1")
data1 = ip.load_json("tests/data1.json")
## this example has 12 Samples
data1.samples
Expand Down
4 changes: 2 additions & 2 deletions docs/test_rad.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Step 4: Joint estimation of heterozygosity and error rate
.. code:: python
import ipyrad as ip
data1 = ip.load_assembly("test_rad/data1")
data1 = ip.load_json("test_rad/data1.json")
.. code:: python
Expand Down Expand Up @@ -347,5 +347,5 @@ the ``save`` command.
#ip.save_assembly("data1.p")
## load assembly object
#data = ip.load_assembly("data1.p")
#data = ip.load_json("data1.p.json")
#print data.name

0 comments on commit e402946

Please sign in to comment.