Skip to content

Commit

Permalink
data-raw links fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
caranathunge committed Aug 17, 2022
1 parent 47e5ab8 commit ff0b7fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions data-raw/covid_fit_df.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## code to prepare `covid_fit_df` dataset goes here
covid_raw <- create_df(
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD022296_proteinGroups_subset.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD022296_expDesign_subset.txt",
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/pg3.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/ed3.txt",
)
covid_filt <- filterbygroup_na(covid_raw)
covid_imp_df <- impute_na(covid_filt, method = "kNN")
Expand Down
4 changes: 2 additions & 2 deletions data-raw/covid_norm_df.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## code to prepare `covid_norm_df` dataset goes here
covid_raw <- create_df(
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD022296_proteinGroups_subset.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD022296_expDesign_subset.txt",
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/pg3.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/ed3.txt",
)
covid_filt <- filterbygroup_na(covid_raw)
covid_imp_df <- impute_na(covid_filt, method = "kNN")
Expand Down
4 changes: 2 additions & 2 deletions data-raw/ecoli_fit_df.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## code to prepare `ecoli_fit_df` dataset goes here
raw <- create_df(
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD000279_proteinGroups.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD000279_expDesign.txt",
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/pg1.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/ed1.txt",
)
raw_filtered <- filterbygroup_na(raw)
imp_df_mp <- impute_na(raw_filtered)
Expand Down
4 changes: 2 additions & 2 deletions data-raw/ecoli_norm_df.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## code to prepare `ecoli_norm_df` dataset goes here
raw <- create_df(
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD000279_proteinGroups.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/PXD000279_expDesign.txt",
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/pg1.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/ed1.txt",
)
raw_filtered <- filterbygroup_na(raw)
imp_df_mp <- impute_na(raw_filtered)
Expand Down

0 comments on commit ff0b7fe

Please sign in to comment.