Skip to content
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

Change order of log transformation and normalisation in standard workflow #547

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/protzilla/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ def test_runner_imports(
'FilterSamplesByProteinIntensitiesSum',
'ImputationByKNN',
'OutlierDetectionByLocalOutlierFactor',
'NormalisationByMedian',
'TransformationLog',
'NormalisationByMedian',
'PlotProtQuant',
'DifferentialExpressionTTest',
'PlotVolcano',
Expand All @@ -109,8 +109,8 @@ def test_runner_imports(
call({'deviation_threshold': 2.0}),
call({'number_of_neighbours': 5}),
call({'number_of_neighbors': 20}),
call({'percentile': 0.5}),
call({'log_base': 'log2'}),
call({'percentile': 0.5}),
call({'similarity_measure': 'euclidean distance'}),
call({'alpha': 0.05}),
call({'fc_threshold': 1}),
Expand Down
14 changes: 7 additions & 7 deletions user_data/workflows/standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ steps:
plot_inputs: { }
type: OutlierDetectionByLocalOutlierFactor
- form_inputs:
percentile: 0.5
log_base: log2
inputs: { }
plot_inputs:
graph_type: Boxplot
graph_type: Histogram
group_by: None
visual_transformation: log10
type: NormalisationByMedian
type: TransformationLog
- form_inputs:
log_base: log2
percentile: 0.5
inputs: { }
plot_inputs:
graph_type: Histogram
graph_type: Boxplot
group_by: None
type: TransformationLog
visual_transformation: log10
type: NormalisationByMedian
- form_inputs:
similarity_measure: euclidean distance
inputs: { }
Expand Down
Loading