How can I mention separate creator and correspondence in a package?
1
0
Entering edit mode
@arman-shahrisa-7713
Last seen 5.4 years ago

I'm developing a Bioconductor package in which I'm a creator, author, and maintainer. But someone else is the corresponding author. Is the following code correct in the package description?

 

Author: c(person(first = "A****", last = "S*******", 
                           email = "s******************@hotmail.com", role = c("aut", "cre")),
          person(first = "M******", last = "T******************", 
                           email = "********************@yahoo.com", role = c("ctb", "rcp")))


Maintainer: A**** S********* <s***************@hotmail.com>

package description • 599 views
ADD COMMENT
2
Entering edit mode
@martin-morgan-1513
Last seen 13 hours ago
United States

As with your previous question, this is about package development and should be sent to the bioc-devel mailing list.

Use Authors@R: and DO NOT use Author:, Maintainer: fields.

Authors@R: c(
    person(
        first = "A****", last = "S*******", 
        email = "s******************@hotmail.com",
        role = c("aut", "cre")
   ),
   person(
        first = "M******", last = "T******************", 
        email = "********************@yahoo.com",
        role = c("ctb", "rcp")
   )
)
ADD COMMENT

Login before adding your answer.

Traffic: 727 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6