-
Notifications
You must be signed in to change notification settings - Fork 34
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
Installation fails #44
Comments
Hi @erikfel97,
Can you please give a bit more detail as to how you are trying to install?
Thanks,
Ted
…On Mon, Mar 9, 2020 at 7:31 AM erikfel97 ***@***.***> wrote:
Hi,
Trying to install the package on R-3.6.3
Always the same error:
Error: Failed to install 'cmapR' from GitHub: (converted from warning)
installation of package ..... had non-zero exit status
How should I solve this problem?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#44?email_source=notifications&email_token=AAO6F374K2ACT326EH6IUKLRGTHRPA5CNFSM4LEGXAQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4ITREVDQ>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F36WES2IINTT5WKYQGDRGTHRPANCNFSM4LEGXAQA>
.
|
First - devtools::install_github("cmap/cmapR") |
Ok thanks. Are there any other error messages produced?
Also just so you are aware, there is a docker container with cmapR
available here <https://hub.docker.com/r/cmap/cmapr>, if you'd like to use
the package without installing on your system.
…On Mon, Mar 9, 2020 at 10:21 AM erikfel97 ***@***.***> wrote:
First - devtools::install_github("cmap/cmapR")
Then using the script: install_cmapR.R
Same error message in both cases
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44?email_source=notifications&email_token=AAO6F3ZITR7SWHDHW3EFOI3RGT3QFA5CNFSM4LEGXAQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEOHM7IQ#issuecomment-596561826>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F3ZOIK73O5GZUIQ5IB3RGT3QFANCNFSM4LEGXAQA>
.
|
This is the only error message to be produced |
Interesting. It looks like the ssGSEA2.0 source code contains a copy of
some of the cmapR code for parsing and writing GCTX files, though I don't
know if this is causing the install problem. But if you have ssGSEA2.0
installed you should be able to use this functionality. This may be a
short-term workaround but it would still be useful to know why the cmapR
install fails, which I can keep debugging. Do you have a specific use case
for cmapR for which the GCTX functionality might suffice for now?
…On Mon, Mar 9, 2020 at 10:38 AM erikfel97 ***@***.***> wrote:
This is the only error message to be produced
Actually, in order to run ssGSEA2.0 I should have this package installed...
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44?email_source=notifications&email_token=AAO6F32RNQZDNUH6LZNN2STRGT5P5A5CNFSM4LEGXAQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEOHPP5A#issuecomment-596572148>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F3ZQSLHDKZTE23I7LJDRGT5P5ANCNFSM4LEGXAQA>
.
|
Hi, I got a similar install error after having no problems until today:
Earlier in the console I got a more specific message at this point in the installation:
I tried the install_cmapR.R script as it is and then |
Hi @ebrgstrm,
Sorry to hear about that error. Do you happen to have the ssGSEA package
installed on your system also?
Thanks
Ted
…On Fri, Mar 27, 2020 at 2:56 PM ebrgstrm ***@***.***> wrote:
Hi, I got a similar install error after having no problems until today:
Error: Failed to install 'cmapR' from GitHub:
(converted from warning) installation of package
‘C:/.../cmapR_0.99.18.tar.gz’ had non-zero exit status
Earlier in the console I got a more specific message at this point in the
installation:
** byte-compile and prepare package for lazy loading
Error in findpack(package, lib.loc) : there is no package called 'cmapR'
Calls: -> findpack
Execution halted
ERROR: lazy loading failed for package 'cmapR'
- removing '.../R/win-library/3.6/cmapR'
I tried the install_cmapR.R script as it is and then
devtools::install_github('cmap/cmapR') in the same session and got the
same error both times. Is this a problem on my end? Hope the extra info
helps, thank you!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F35SCIWV5IVB4W74LGDRJTZE3ANCNFSM4LEGXAQA>
.
|
Yes, I used that yesterday and it seems to be what kicked off the problems with my libraries (specifically, the ssGSEA2.0/PTM-SEA implementation). Since then, I updated R 3.5 -> 3.6, and clean installed other libraries with no issues. |
Hmm, ok. I think the initial error could have something to do with the
ssGSEA package but I'm not sure what specifically. Did you reinstall that
package after updating to R 3.6?
…On Fri, Mar 27, 2020, 5:08 PM ebrgstrm ***@***.***> wrote:
Yes, I used that yesterday and it seems to be what kicked off the problems
with my libraries (specifically, the ssGSEA2.0/PTM-SEA implementation).
Since then, I updated R 3.5 -> 3.6, and clean installed other libraries
with no issues.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F332ASFIYPT45B66DHTRJUIVVANCNFSM4LEGXAQA>
.
|
Hi, I just want to chime in here and share some of my experience with the I am pretty sure that the broadinstitute/ssGSEA2.0#14 (comment) As a temporary solution I decided to include and use the The most common problem that I encountered during installation of Another point to keep in mind is the switch to the
The code above uses Anyways, I just wanted to share my thoughts on that. Best, |
Thanks for the response, @karstenkrug ! Based on that I think my issues were just coincidentally timed somehow. Thanks all for the help! I will update if I encounter any more issues like this. I would like to echo Karsten's kudos as well, cmapR is very helpful to our group. |
Great, thanks very much to both of you and I'm glad everything is working
for you @ebrgstrm. Thanks for the kind words as well. We'll continue to try
to make the cmapR package as useful as possible and we very much appreciate
your input.
Best,
Ted
…On Sat, Mar 28, 2020 at 5:28 PM ebrgstrm ***@***.***> wrote:
Thanks for the response, @karstenkrug <https://github.com/karstenkrug> !
Based on that I think my issues were just coincidentally timed somehow.
Update: turns out my problem was most likely on my end, as my default
library path was on a mapped network drive, and either BioConductor or
GitHub or something was running into a permission error at some point.
After a clean install of R and this change, cmapR installed perfectly and
works fine after running ssGSEA.
Thanks all for the help! I will update if I encounter any more issues like
this. I would like to echo Karsten's kudos as well, cmapR is very helpful
to our group.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAO6F35HHYWVTTUS4WJTLKLRJZTYDANCNFSM4LEGXAQA>
.
|
Hi,
Trying to install the package on R-3.6.3
Always the same error:
Error: Failed to install 'cmapR' from GitHub: (converted from warning) installation of package ..... had non-zero exit status
How should I solve this problem?
The text was updated successfully, but these errors were encountered: