Cbcb:Resources: Difference between revisions

From Cbcb
Jump to navigation Jump to search
No edit summary
 
(→‎Getting started in CBCB: Moved the "Getting started" information to the main page)
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__TOC__
==Main information==
==Main information==
(under development)<br>
(under development)<br>
for now see [http://www.cbcb.umd.edu/intranet/resources.shtml www.cbcb.umd.edu/intranet/resources.shtml]<br>
For now see [http://www.cbcb.umd.edu/intranet/resources.shtml www.cbcb.umd.edu/intranet/resources.shtml]<br>


For a list of our Disk Storage, with mount points and amount of space on each one, see [http://wiki.umiacs.umd.edu/cbcb-private/index.php/Storage wiki.umiacs.umd.edu/cbcb-private/index.php/Storage]<br>


==Publication database==
==Publication database==


(from kunmi)<br
(from kunmi)<br>
 
 
I have a new publications system to help better manage our publications.  
I have a new publications system to help better manage our publications.  
We will no longer need to edit the index.shtml file anymore, but rather  
We will no longer need to edit the index.shtml file anymore, but rather  
Line 17: Line 22:
working on sorting by author)
working on sorting by author)
* All publications are stored in a MySQL database.
* All publications are stored in a MySQL database.
* CBCB user/pass = cbcb/cbcb
* Access information (passwords and such) provided on the secure wiki: [https://wiki.umiacs.umd.edu/cbcb-private/index.php/Publication_Server https://wiki.umiacs.umd.edu/cbcb-private/index.php/Publication_Server]
<br>
The system is live at [http://www.cbcb.umd.edu/publications http://www.cbcb.umd.edu/publications].
 
==Adding just your pubs to your website==
Two pages are useful for this purpose:<br>
[http://www.cbcb.umd.edu/publications/authorByYear?n=pop&fn=Mihai&nyr=3 http://www.cbcb.umd.edu/publications/authorByYear?n=pop&fn=Mihai&nyr=3] -- this page displays the publications for an author with last name specified in the '''n=''' option, with full name specified in '''fn=''', grouped by year for the first '''nyr=''' years (default 3), after which all remaining publications are listed in reverse chronological order.<br><br>
[http://www.cbcb.umd.edu/publications/authorRecent?n=pop&num=5 http://www.cbcb.umd.edu/publications/authorRecent?n=pop&num=5] -- this page displays the last '''num=''' publications (default 5) for an author with last name specified in the '''n=''' option.<br><br>
Adding one of these pages within your website can be done with an iframe, e.g.:<br>
<pre>
<iframe src="http://www.cbcb.umd.edu/publications/authorRecent?n=pop&num=5"
  width="100%" height=300>
</iframe>
</pre>
<br>
There might be an easier/prettier way but I don't know it.
<br>
<br>
The system is currently in beta phase and not on the main CBCB server
Note that the pages I mention above automatically add an "et al." after the first 10 authors in any publication with more than 10 authors.  Right now this is hardcoded behaviour, though it shouldn't be super-hard to create a more flexible policy.
(so its not live yet). Please feel free to play around with it and let
<br><br>
me know if you come across any bug(s).
Also useful: [http://www.cbcb.umd.edu/publications/author.php?n=pop http://www.cbcb.umd.edu/publications/author.php?n=pop] <br>
Current site URL = [http://cbcbwww01.umiacs.umd.edu/publications http://cbcbwww01.umiacs.umd.edu/publications]<br>
if you look at the file, what you need is from line 10 - 21. Everything else is for the look and feel. I did two ways to search for a user and thats by database user id and last name (case-insensitive). Searching by last name gives better results.
Also, I'm yet to add pdfs to the publications.

Latest revision as of 21:19, 18 May 2009

Main information

(under development)
For now see www.cbcb.umd.edu/intranet/resources.shtml

For a list of our Disk Storage, with mount points and amount of space on each one, see wiki.umiacs.umd.edu/cbcb-private/index.php/Storage

Publication database

(from kunmi)


I have a new publications system to help better manage our publications. We will no longer need to edit the index.shtml file anymore, but rather log into the system and add/edit as we please. Here are the specifications:

  • Any logged in user for add/edit
  • Import publications manually, or fetch by PubMed ID, EndNote format(also supports EndNote XML), RIS format, and Bibtex
  • Export to Bibtex, EndNote or RIS formats.
  • Search publications by author, keywords or PubMed ID
  • Better ordering of publications (by date, journal or title ... I'm

working on sorting by author)


The system is live at http://www.cbcb.umd.edu/publications.

Adding just your pubs to your website

Two pages are useful for this purpose:
http://www.cbcb.umd.edu/publications/authorByYear?n=pop&fn=Mihai&nyr=3 -- this page displays the publications for an author with last name specified in the n= option, with full name specified in fn=, grouped by year for the first nyr= years (default 3), after which all remaining publications are listed in reverse chronological order.

http://www.cbcb.umd.edu/publications/authorRecent?n=pop&num=5 -- this page displays the last num= publications (default 5) for an author with last name specified in the n= option.

Adding one of these pages within your website can be done with an iframe, e.g.:

<iframe src="http://www.cbcb.umd.edu/publications/authorRecent?n=pop&num=5" 
  width="100%" height=300>
</iframe>


There might be an easier/prettier way but I don't know it.
Note that the pages I mention above automatically add an "et al." after the first 10 authors in any publication with more than 10 authors. Right now this is hardcoded behaviour, though it shouldn't be super-hard to create a more flexible policy.

Also useful: http://www.cbcb.umd.edu/publications/author.php?n=pop
if you look at the file, what you need is from line 10 - 21. Everything else is for the look and feel. I did two ways to search for a user and thats by database user id and last name (case-insensitive). Searching by last name gives better results.