Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devel liesa #4

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
28551a2
pearson/ spearman correlation/p-values as list entries
LiesaSalzer Sep 11, 2020
7be80f2
Added documentation on adjacency_list
LiesaSalzer Sep 11, 2020
3d7fde1
Documentation on adjacency_list
LiesaSalzer Sep 11, 2020
6d9b91b
document adjacency_list
LiesaSalzer Sep 11, 2020
be2e5f4
update adjacency_list
LiesaSalzer Sep 11, 2020
2206f5d
ducumentation on sum_mas and annotationNames
LiesaSalzer Sep 11, 2020
e9d02f1
documentation of structural and statistical
LiesaSalzer Sep 11, 2020
02566c6
error solved in adjacency_list
LiesaSalzer Sep 11, 2020
d024694
"reshape2::" added to adjacency_list
LiesaSalzer Sep 11, 2020
cb06a50
delete plots
LiesaSalzer Sep 11, 2020
4226910
added reshape2 input
LiesaSalzer Sep 11, 2020
b4faa20
comment position changed
LiesaSalzer Sep 11, 2020
aef7988
added comment on rcorr in correlation_p
LiesaSalzer Sep 14, 2020
dd2bf3b
change threshold
LiesaSalzer Sep 14, 2020
5a65560
threshold changed
LiesaSalzer Sep 14, 2020
09e625c
threshold
LiesaSalzer Sep 14, 2020
0609522
change threshold()
LiesaSalzer Sep 14, 2020
331de2f
change threshold
LiesaSalzer Sep 14, 2020
6080df8
test threshold
LiesaSalzer Sep 14, 2020
2b1c23e
test threshold
LiesaSalzer Sep 14, 2020
e67abcb
test threshold
LiesaSalzer Sep 14, 2020
6b10b65
added summary_mz function
LiesaSalzer Sep 15, 2020
7769771
check arguments in statistical
LiesaSalzer Sep 15, 2020
631a066
Delete export2gml because is now in MetNetClassR,
LiesaSalzer Sep 16, 2020
6cde52a
change issue in adjacency_list
LiesaSalzer Sep 16, 2020
26645f6
change issue in adjacency_list
LiesaSalzer Sep 16, 2020
d790187
change threshold
LiesaSalzer Sep 21, 2020
cf2178c
functions adapted & tested:
LiesaSalzer Sep 22, 2020
fe137d7
Added documentation for functions:
LiesaSalzer Sep 22, 2020
35483a3
Documentation on combine function
LiesaSalzer Sep 23, 2020
b7dd324
Adjust MetNet functionalities and documentation.
LiesaSalzer Feb 4, 2021
2702540
Remove some sanity check from rtCorrection
LiesaSalzer Feb 4, 2021
245fa4f
Add examples to MetNet vignette
LiesaSalzer Mar 24, 2021
670322b
small change on vignette
LiesaSalzer Mar 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
^\.git$
^\.gitignore$
^\.lintr$
^\.travis.yml$
^\.travis.yml$
^.*\.Rproj$
^\.Rproj\.user$
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.swp
*.so
*.o
*.rds
*.rds
.Rproj.user
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ Description: MetNet contains functionality to infer metabolic network topologies
the two matrices are combined to form a adjacency matrix inferred from both quantitative
and structure information.
License: GPL (>= 3)
RoxygenNote: 6.1.1
RoxygenNote: 7.1.1
17 changes: 17 additions & 0 deletions MetNet.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
4 changes: 4 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(adjacency_list)
export(annotaionNames)
export(aracne)
export(bayes)
export(clr)
Expand All @@ -11,7 +13,9 @@ export(randomForest)
export(rtCorrection)
export(statistical)
export(structural)
export(summary_mz)
export(threshold)
export(threshold_p)
importFrom(BiocParallel,bplapply)
importFrom(GENIE3,GENIE3)
importFrom(bnlearn,arcs)
Expand Down
Loading