Skip to content

Commit

Permalink
Merge remote-tracking branch 'jcharkow/feature/oswSpeedUp' into featu…
Browse files Browse the repository at this point in the history
…re/oswSpeedUp_NEW
  • Loading branch information
jcharkow committed Aug 30, 2023
2 parents 1801275 + 1610849 commit 019595a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openms_ci_matrix_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -612,4 +612,4 @@ jobs:
mkdir -p ~/.ssh/
echo "$PASS" > ~/.ssh/private.key
sudo chmod 600 ~/.ssh/private.key
rsync --progress -avz -e "ssh -i ~/.ssh/private.key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/* "$USER@$HOST:/knime-plugin/updateSite/$folder"
rsync --progress -avz -e "ssh -i ~/.ssh/private.key -o StrictHostKeyChecking=no" $GITHUB_WORKSPACE/de.openms.update/target/repository/* "$USER@$HOST:/knime-plugin/updateSite/$folder/"
4 changes: 2 additions & 2 deletions src/openms/include/OpenMS/ANALYSIS/OPENSWATH/DIAHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
#include <vector>
namespace OpenMS
{
class RangeMZ;
class RangeMobility;
struct RangeMZ;
struct RangeMobility;
class TheoreticalSpectrumGenerator;
namespace DIAHelpers
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ START_SECTION((OpenSwath::SpectrumPtr OpenSwathScoring::fetchSpectrumSwath(std::
TEST_EQUAL(sp.size(), 1);
TEST_EQUAL(sp[0]->getMZArray()->data.size(), 3);
TEST_EQUAL(sp[0]->getIntensityArray()->data.size(), 3);
TEST_EQUAL(sp[0]->getDriftTimeArray(), nullptr); // for resampling we do not use IM array
TEST_TRUE( (sp[0]->getDriftTimeArray() == nullptr ) ); // for resampling we do not use IM array

TEST_REAL_SIMILAR(sp[0]->getMZArray()->data[0], 102.);
TEST_REAL_SIMILAR(sp[0]->getMZArray()->data[1], 103.);
Expand Down
4 changes: 2 additions & 2 deletions src/topp/ProteomicsLFQ.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1000,8 +1000,8 @@ class ProteomicsLFQ :
bool missing_spec_ref(false);
for (const PeptideIdentification & pid : peptide_ids)
{
if (!pid.metaValueExists("spectrum_reference")
|| pid.getMetaValue("spectrum_reference").toString().empty())
if (!pid.metaValueExists(Constants::UserParam::SPECTRUM_REFERENCE)
|| pid.getMetaValue(Constants::UserParam::SPECTRUM_REFERENCE).toString().empty())
{
missing_spec_ref = true;
break;
Expand Down

0 comments on commit 019595a

Please sign in to comment.