R/peer_file_add_aut.R
peer_file_add_aut.Rd
peer_file_add_aut()
takes a local file and adds it to reviewer-specific folders on authors' repositories. The function's main purpose is to distribute rating forms into the reviewer-specific folders on authors' repositories.
peer_file_add_aut( org, roster, local_path, double_blind = TRUE, prefix = "", suffix = "", message = NULL, branch = "master", overwrite = FALSE, verbose = TRUE )
org | Character. Name of the GitHub organization. |
---|---|
roster | Character. Data frame or file path of roster file with author-reviewer assignments. Must contain a column |
local_path | Character. File name of file to be added. |
double_blind | Logical. Specifies whether review is conducted double-blind (i.e. neither reviewer nor author can identify each other), or single-blind (i.e. authors remain anonymous but reviewer identities are revealed). If |
prefix | Character. Common repository name prefix. |
suffix | Character. Common repository name suffix. |
message | Character. Commit message. |
branch | Character. Name of branch the file should be committed to, defaults to |
overwrite | Logical. Whether existing files in reviewers' repositories should be overwritten, defaults to |
verbose | Logical. Should success/failure messages be printed, defaults to |
Other peer review functions:
peer_assign()
,
peer_file_add_rev()
,
peer_form_create_rating()
,
peer_form_create_review()
,
peer_init()
,
peer_return()
,
peer_roster_create()
,
peer_score_rating()
,
peer_score_review()
if (FALSE) { peer_file_add_aut(org = "ghclass-test", roster = "hw2_roster_seed12345.csv", local_path = "/Users/profx/introstats/hw2/hw2_rating.Rmd", prefix = prefix) }