-
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.
Fixed minor bugs, added details to adonis exported table, added mkdir function and the possibility of adding transparency to PCoA points through the alpha.points parameter.
- Loading branch information
1 parent
f5a3f81
commit 093af20
Showing
5 changed files
with
64 additions
and
13 deletions.
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,7 +1,7 @@ | ||
Package: microbAIDeR | ||
Type: Package | ||
Title: An ensemble of functions for easier and quicker preliminary microbiome analysis | ||
Version: 0.2.1 | ||
Version: 0.2.2 | ||
Author: Marco Fabbrini <[email protected]>, Gabriele Conti | ||
Maintainer: Marco Fabbrini <[email protected]> | ||
Description: An ensemble of functions for easier and quicker preliminary microbiome analyses | ||
|
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
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
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
\name{mkdir} | ||
\alias{mkdir} | ||
%- Also NEED an '\alias' for EACH other topic documented here. | ||
\title{ | ||
Create a folder if it doesn't already exists | ||
%% ~~function to do ... ~~ | ||
} | ||
\description{ | ||
%% ~~ A concise (1-5 lines) description of what the function does. ~~ | ||
This script takes a PATH as input and checks if the given folder already exists. If not, it creates it. | ||
} | ||
\usage{ | ||
mkdir(path) | ||
} | ||
%- maybe also 'usage' for other objects documented here. | ||
\arguments{ | ||
\item{path}{ | ||
Full or local \bold{PATH} to the folder that we want to create | ||
} | ||
} | ||
\details{ | ||
} | ||
\author{ | ||
Marco Fabbrini - [email protected] | ||
} | ||
\examples{ | ||
mkdir("Plots") | ||
mkdir("Plots/Subfolder of Plots") | ||
mkdir("Plots/Subfolder of Plots/Additional subfolder") | ||
} | ||
% Add one or more standard keywords, see file 'KEYWORDS' in the | ||
% R documentation directory (show via RShowDoc("KEYWORDS")): | ||
% \keyword{ ~kwd1 } | ||
% \keyword{ ~kwd2 } | ||
% Use only one keyword per line. | ||
% For non-standard keywords, use \concept instead of \keyword: | ||
% \concept{ ~cpt1 } | ||
% \concept{ ~cpt2 } | ||
% Use only one concept per line. |