Skip to content

Commit

Permalink
Merge pull request #11 from workflow4metabolomics/fix_two_acquisition…
Browse files Browse the repository at this point in the history
…_mode

fix a syntax error axP -> xaP :/
  • Loading branch information
lecorguille authored Apr 7, 2017
2 parents 26f1913 + 329a088 commit c897279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ before_install:

script:
- planemo lint ${TRAVIS_BUILD_DIR}/galaxy/probmetab
- planemo test --conda_auto_init --conda_auto_install --conda_dependency_resolution --galaxy_branch release_17.01 --no_cache_galaxy ${TRAVIS_BUILD_DIR}/galaxy/probmetab
- travis_wait 40 planemo test --conda_auto_init --conda_auto_install --conda_dependency_resolution --galaxy_branch release_17.01 --no_cache_galaxy ${TRAVIS_BUILD_DIR}/galaxy/probmetab


4 changes: 2 additions & 2 deletions galaxy/probmetab/lib.r
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ probmetab = function(xa, xaP, xaN, variableMetadata, variableMetadataP, variable
#}
# include CAMERA non-annotated compounds, and snr retrieval
# comb 2+ - used on Table 1
ionAnnotP2plus = get.annot(axP, allowMiss=listArguments[["allowMiss"]], xset=xsetPnofill,toexclude=listArguments[["toexclude"]])
ionAnnotN2plus = get.annot(axN, polarity="negative", allowMiss=listArguments[["allowMiss"]], xset=xsetNnofill,toexclude=listArguments[["toexclude"]])
ionAnnotP2plus = get.annot(xaP, allowMiss=listArguments[["allowMiss"]], xset=xsetPnofill,toexclude=listArguments[["toexclude"]])
ionAnnotN2plus = get.annot(xaN, polarity="negative", allowMiss=listArguments[["allowMiss"]], xset=xsetNnofill,toexclude=listArguments[["toexclude"]])
ionAnnot = combineMolIon(ionAnnotP2plus, ionAnnotN2plus)
print(sum(ionAnnot$molIon[,3]==1))
print(sum(ionAnnot$molIon[,3]==0))
Expand Down

0 comments on commit c897279

Please sign in to comment.