Bioconductor Guest Posting

You may post to the Bioconductor mailing list through this form, without being a subscriber. You can also subscribe to the list. You can read the list online.

Please read our posting guide before posting. It's especially important to include the output of sessionInfo() when reporting a problem.

We do not keep your email address. Your email address will be added to the "To:" line in the email that is sent, which means that people who respond may "Reply All" and you will get their responses. There is no guarantee they will respond this way, so you should watch the online list archive for responses.

[Return to Bioconductor web site]

Your name:

Your email address:


Subject:


Email:


Output of sessionInfo():



Reload Image
Code:


check($_POST['code']); if($valid == true) { if ($_POST['subject'] == "" || $_POST['name'] == "" || $_POST['email'] == "" || $_POST['body'] == "" || $_POST['code'] == "" || $_POST['sessioninfo'] == "") { echo "
Please fill in all form items. Go back to try again.
"; } else { echo "
Thank you. Your email will be posted.
\n"; echo "
Return to Bioconductor Site
\n"; $listemail = "dtenenba@fhcrc.org"; //"bioconductor@r-project.org"; $guestemail = "guest@bioconductor.org"; $sender = $_POST['name'] . " [guest] <" . $guestemail . ">"; $mailheaders = "From: " . $sender . "\n"; $to = $listemail . ", " . $_POST['email']; $subject = $_POST['subject']; $body = $_POST['body'] . "\n\n -- output of sessionInfo(): \n\n" . $_POST['sessioninfo'] . "\n\n--\nSent via the guest posting facility at bioconductor.org."; $result = mail($to, $subject, $body, $mailheaders); } } else { echo "
Sorry, the code you entered was invalid. Go back to try again.
"; } } ?>