Skip to content

Commit

Permalink
MR Feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Anshuman Raina committed Nov 12, 2024
1 parent 054ccbb commit 10a796b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Fetch Output
run: |
scp raina.ans@login-00.discovery.neu.edu:/home/raina.ans/R/job_output.txt job_output.txt
scp raina.ans@login-00.discovery.neu.edu:/home/raina.ans/R/job_error.txt job_error.txt
scp raina.ans@login-00.discovery.neu.edu:/work/VitekLab/Projects/Benchmarking/job_output.txt job_output.txt
scp raina.ans@login-00.discovery.neu.edu:/work/VitekLab/Projects/Benchmarking/job_error.txt job_error.txt
- name: Upload Output as Artifact
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions benchmark/benchmark.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ data_process_tasks <- list(
),
list(
label = "Data process without Normalization",
result = function() dataProcess(msstats_format, normalization = "FALSE", n_top_feature = 20)
result = function() dataProcess(msstats_format, featureSubset = "topN", normalization = "FALSE", n_top_feature = 20)
),
list(
label = "Data process without Normalization with MBImpute False",
result = function() dataProcess(msstats_format, normalization = "FALSE", n_top_feature = 20, MBimpute = FALSE)
result = function() dataProcess(msstats_format, featureSubset = "topN", normalization = "FALSE", n_top_feature = 20, MBimpute = FALSE)
)
)

Expand Down
4 changes: 2 additions & 2 deletions benchmark/config.slurm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#SBATCH --job-name=msstats_benchmark_job
#SBATCH --output=job_output.txt
#SBATCH --error=job_error.txt
#SBATCH --output=/work/VitekLab/Projects/Benchmarking/job_output.txt
#SBATCH --error=/work/VitekLab/Projects/Benchmarking/job_error.txt
#SBATCH --time=01:00:00 # Set the maximum run time
#SBATCH --ntasks=1 # Number of tasks (one process)
#SBATCH --cpus-per-task=8 # Use 8 CPU cores for the task
Expand Down

0 comments on commit 10a796b

Please sign in to comment.