-
Notifications
You must be signed in to change notification settings - Fork 50
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
update CWG2R based on suggestions by @mmlopezu #132
Conversation
sessionInfo: R version 3.2.3 (2015-12-10) Platform: x86_64-apple-darwin13.4.0 (64-bit) Running under: OS X 10.11.3 (El Capitan) locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] git2r_0.13.1 loaded via a namespace (and not attached): [1] htmltools_0.3 tools_3.2.3 yaml_2.1.13 memoise_1.0.0 rmarkdown_0.9.2 [6] knitr_1.12.3 digest_0.6.9 devtools_1.10.0
👍 |
YES! |
This isn't ready... images might need to be added
Yes...If I understand you have not made the change now as suggested above? Perhaps finally better to keep the 6 below steps: 1 Fork the popgenInfo repository* At the moment you have 5 steps in the vignette and there is finally no section 6. It is easy to create one: just before mgs<- Finally Why not adding this as an additional step? |
if you look at the commits, I have indeed made the changes as suggested above in c62b06b.
I saw your comment and have started to make changes in 688403e. I'm waiting on @hlapp's answer for #134 to include images.
This is actually redundant with Step 6. The final order is: i. Fork
The last one is a bit difficult to write as github has no concrete guides that I can point to for this kind of workflow. |
Note, you can see all of the changes I make by clicking here: https://github.com/NESCent/popgenInfo/pull/132/files |
Sorry! I was looking the bad file. Concerning the last section (I think that this is what I need to do for my vignette), I suggest to develop "Once your pull request passes peer review and is published, you can update your Is it correct? If yes I will try to apply it . |
Hi @smanel, In your case, you should continue to add and commit changes to your vignette and push those changes since your pull request (#121) is still open and has not been published. I now realize where the confusion lies. You are currently in step 4, but there are no instructions on what to do if changes need to be made (which is to continue adding content, committing, and pushing). I will add these instructions today. |
@smanel, in other words, no, you do not need to update your branch at this time. |
I use the following R script. Now what is missing? library(git2r) |
library(git2r)
repo <- repository()
checkout(repo, "26_01_16_Signal_Selection")
repo
status(repo)
add(repo, "*") # adding all new or changed files
status(repo)
msg <- " review signal selection vignette: correction boxplot"
commit(repo, msg, session = TRUE)
status(repo) # should return nothing
repo
summary(commits(repo)[[1]])
push(repo, credentials = cred_token()) Nothing is missing! 😺 |
@smanel, I have made changes to include instructions on peer review. Are these sufficient? |
I think yes. But I probably need to read all the vignette again and not only short revised sections to have a global idea of the vignette. Is it possible? |
You can download it here. I've rendered it on my machine and placed it in a zip file: |
A long vignette! |
Yeah, that's what ends up happening with how-to guides. 😐 Sent from my iPhone
|
If it helps, steps 1-4 in the vignette correspond to steps 1-4 in the figure: https://github.com/NESCent/popgenInfo/pull/143/files |
@smanel, do you think this version is good enough to merge at the moment? I would argue that it's much improved over the version that exists now. |
Where I am sure to read the last changes? |
update CWG2R based on suggestions by @mmlopezu
I've added comments to let the user know to start on step 3 if they've already forked and cloned the repository.
Question: should I change the steps to:
I think it might be easier this way.