Skip to content
Prev 18610 / 21312 Next

[Bioc-devel] JAVA_HOME cannot be determined on Windows on Bioconductor platform report

Hi Augustin,

Well, I just spotted another problem with paxtoolsr. The bc05330e commit 
(from Sep 16) commented out the "UnsupportedPlatforms: win32" line in 
the .BBSoptions:

   ~$ git diff 84cb775798e074e881aefb904b05b89b41b49db1 
bc05330e337626406d76e69dd4a636e594431cb5 .BBSoptions

   diff --git a/.BBSoptions b/.BBSoptions

   index 0a7618d..f765312 100644

   --- a/.BBSoptions

   +++ b/.BBSoptions

   @@ -2,4 +2,4 @@

    # The reason this package is marked as unsupported on win32 is that
    # it requires the Java JDK. However it seems that Oracle no longer

    # provides the JDK for 32-bit windows:

    # https://www.oracle.com/java/technologies/javase-jdk14-downloads.html

   -UnsupportedPlatforms: win32

   +# UnsupportedPlatforms: win32


Note that the reason why we added this .BBSoptions file is explained in 
the file itself.

Right now paxtoolsr fails to install for the i386 arch on rieling1 (see 
https://master.bioconductor.org/checkResults/3.14/bioc-LATEST/paxtoolsr/riesling1-checksrc.html) 
but the package does successfully install for the x64 arch. I just went 
on riesling1 and was able to install the package manually:

PS D:\biocbuild\bbs-3.14-bioc\meat> ..\R\bin\R --arch x64 CMD INSTALL 
--no-multiarch paxtoolsr
* installing to library 'D:/biocbuild/bbs-3.14-bioc/R/library'
* installing *source* package 'paxtoolsr' ...
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
   converting help for package 'paxtoolsr'
     finding HTML links ... done
     addAttributeList                        html
     convertDataFrameListsToVectors          html
     convertSifToGmt                         html
     downloadFile                            html
     downloadPc2                             html
     downloadSignedPC                        html
     fetch                                   html
     filterSif                               html
     getCacheFiles                           html
     getErrorMessage                         html
     getNeighbors                            html
     getPc                                   html
     getPcDatabaseNames                      html
     getPcUrl                                html
     getShortestPathSif                      html
     getSifInteractionCategories             html
     graphPc                                 html
     integrateBiopax                         html
     loadSifInIgraph                         html
     mapAttributes                           html
     mapValues                               html
     mergeBiopax                             html
     pcDirections                            html
     pcFormats                               html
     pcGraphQueries                          html
     processPcRequest                        html
     readBiopax                              html
     readGmt                                 html
     readPcPathwaysInfo                      html
     readSbgn                                html
     readSif                                 html
     readSifnx                               html
     searchListOfVectors                     html
     searchPc                                html
     splitSifnxByPathway                     html
     summarize                               html
     summarizeSif                            html
     toCytoscape                             html
     toGSEA                                  html
     toLevel3                                html
     toSBGN                                  html
     toSif                                   html
     toSifnx                                 html
     topPathways                             html
     traverse                                html
     validate                                html
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
java version "15.0.1" 2020-10-20
Java(TM) SE Runtime Environment (build 15.0.1+9-18)
Java HotSpot(TM) 64-Bit Server VM (build 15.0.1+9-18, mixed mode, sharing)
MSG: Java found:  NA
** testing if installed package can be loaded from final location
java version "15.0.1" 2020-10-20
Java(TM) SE Runtime Environment (build 15.0.1+9-18)
Java HotSpot(TM) 64-Bit Server VM (build 15.0.1+9-18, mixed mode, sharing)
MSG: Java found:  NA
** testing if installed package keeps a record of temporary installation 
path
* DONE (paxtoolsr)
Making 'packages.html' ... done

Please uncomment the "UnsupportedPlatforms: win32" line and we'll start 
from there.

Thanks,
H.
On 22/10/2021 09:25, Augustin Luna wrote: