Skip to content

Commit

Permalink
Fix readme CL install instructions (#22)
Browse files Browse the repository at this point in the history
- File pointed to in the link is `master.zip`, rather than `Maaslin2-master.zip` (though the inflated directory looks like the later).
- Since it's a `zip` file rather than `.tar.gz`, `tar` doesn't work (at least not on Ubuntu). I got:

```
tar xvzf master.zip
gzip: stdin has more than one entry--rest ignored
tar: Child returned status 2
tar: Error is not recoverable: exiting now
```

But `unzip` worked just fine.
  • Loading branch information
kescobo authored May 11, 2023
1 parent 4bdd87d commit 4300163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ If only running from the command line, you do not need to install the MaAsLin2 p

1. Download the source: [MaAsLin2.master.zip](https://github.com/biobakery/Maaslin2/archive/master.zip)
2. Decompress the download:
* ``$ tar xzvf Maaslin2-master.zip``
* ``$ unzip master.zip``
3. Install the Bioconductor dependencies edgeR and metagenomeSeq.
4. Install the CRAN dependencies:
* ``$ R -q -e "install.packages(c('lmerTest','pbapply','car','dplyr','vegan','chemometrics','ggplot2','pheatmap','hash','logging','data.table','MuMIn','glmmTMB','MASS','cplm','pscl'), repos='http://cran.r-project.org')"``
Expand Down

0 comments on commit 4300163

Please sign in to comment.