2nd CFP Semantic Web Applications and Tools for the Life Sciences (SWAT4LS 2012)
by Adrian Paschke
2nd Call for Papers - Submission Deadline in 3 Weeks
5th International Workshop on Semantic Web Applications and Tools for the Life Sciences (SWAT4LS 2012)
http://www.swat4ls.org/workshops/paris2012
**** NEWS ****
Submission system has been opened - submission deadline in 3 weeks!
http://www.easychair.org/conferences/?conf=swat4ls2012
First program structure, keynotes & tutorials announced
http://www.swat4ls.org/workshops/paris2012/scientific-programme/
Overview
Since 2008, SWAT4LS is a workshop that has provided a platform for the
presentation and discussion of the benefits and limits of applying web-based
information systems and semantic technologies in the domains of health care
and life sciences.
SWAT4LS has been in Edinburgh (2008), Amsterdam (2009), Berlin (2010) and
London (2011).
Growing steadily each year as Semantic Web applications have become more
widespread, the program of SWAT4LS has grown to include associated events.
The next edition of SWAT4LS will be held in Paris, on November 30th 2012,
and it will be preceded by two days of tutorials and hackathons.
We are confident that the next edition of SWAT4LS will provide the same open
and stimulating environment that brought together researchers, developers,
and users, from various fields including biomedical informatics, systems
biology, computational biology, drug discovery, bioinformatics and
biocomputing, to discuss goals, current limits and real experiences in the
use of Semantic Web technologies in Life Sciences.
________________________________________
Rationale
The web is a key medium for information publishing, and web-based
information systems play a key role in biomedical information exchange and
integration. At the same time, the variety and complexity of biomedical
information call for the adoption of semantic-based solutions.
The Semantic Web provides a set of technologies and standards that are key
to support semantic markup, ontology development, distributed information
resources and collaborative social environments.
Altogether the adoption of the web-based semantic-enabled technologies in
the Life Sciences has potential impact on the future of publishing,
biological research and medicine. This workshop will provide a venue to
present and discuss benefits and limits of the adoption of these
technologies and tools in biomedical informatics and computational biology.
It will showcase experiences, information resources, tools development and
applications. It will bring together researchers, both developers and users,
from the various fields of Biology, Bioinformatics and Computer Science, to
discuss goals, current limits and some real use cases for Semantic Web
technologies in Life Sciences.
________________________________________
Topics
Topics of interest include, but are not limited to:
Standards, Technologies, Tools for the Semantic Web:
- Big Metadata
- Semantic Web standards and new proposals (e.g.: RDF, OWL, SKOS, SPIN,
RuleML, Microformats)
- Tools for ontology editing, annotation, versioning and provenance
management
- RDF stores, NoSQL, reasoners, query and visualization systems
- Knowledge representation for biomedical knowledge bases
- Query federation systems for distributed knowledge and data discovery
- Tools for semantics-enabled web publication
Systems for a Semantic Web for Bioinformatics:
- Biomedical knowledge bases on the Semantic Web
- Semantic biomedical Web Services
- Semantics-enabled biomedical information systems and solutions
- Linked Data for biomedical research
- Semantic Scientific Workflow Systems
Existing and prospective applications of the Semantic Web for
Bioinformatics:
- Semantic Wikis
- Semantic collaborative research environments
- Semantic crowdsourcing and collective intelligence
- Alternative approaches to biomedical metadata generation and management
- Methods for data sharing and open data
- Approaches to data privacy and security
- Case studies, use cases, and scenarios
________________________________________
Type of contributions
The following possible contributions are sought:
- Research papers
- Position papers
- Posters
- Software demos
________________________________________
Proceedings
Proceedings of SWAT4LS will be published in CEUR Workshop proceedings.
Please refer to the SWAT4LS website for detailed formatting instructions
prior to submission:
http://www.swat4ls.org/workshops/paris2012/call/
________________________________________
Special issue
Authors of accepted contributions to the upcoming edition of SWAT4LS will be
invited to submit to a special issue of the BMC Journal of Biomedical
Semantics.
________________________________________
Deadlines
Expression of interest for tutorials: 5th July 2012
Submission opening: 3rd September 2012
Papers submission deadline (abstracts): 28th September 2012
Papers submission deadline (full text): 9th October 2012
Early registration deadline: 15th October 2012
Posters and demos submission deadline: 22nd October 2012
Communication of acceptance: 29th October 2012
PDF ready: 23rd November 2011
Hackathon, Tutorials 28-29th November 2012
Workshop day: 30th November 2012
________________________________________
Instructions:
All papers and posters must be in English and submitted in pdf format.
Submissions for papers should report original research, and should be
between 8 and 15 pages.
Submissions for position papers should report qualified opinions,
recommendations or conclusions, and should be between 3 and 6 pages.
Submissions for posters should be between 2 and 4 pages.
Submissions for software demo proposals should also be between 2 and 4
pages.
Please refer to the SWAT4LS website for detailed formatting instructions
prior to submission:
http://www.swat4ls.org/workshops/paris2012/call/
________________________________________
Submission
All submissions will be handled via the EasyChair submission system
http://www.easychair.org/conferences/?conf=swat4ls2012
To ensure high quality, submitted papers will be carefully peer-reviewed by
at least three members of the Scientific Committee.
13 years, 10 months
Without salience
by salt
Hi All,
For the below use case i have implemented the rule. Please suggest other way
of doing without salience.
scenario
ITEMS AMOUNT OCCNO
PASS 10 1
FAIL 10 2
PASS 15 3
PASS 25 4
rule "HelloWorld_14"
salience (65522- $list.indexOf( $transdet1 ))
when
$p1:Passes($list : transaction)
$trans1:Transaction(items in ("PASS")) from $list
$p2:Passes()
not(exists($transdet5:Transaction(items in
("FAIL"),value==$transdet1.getVaue(), occno>$trans1.getOccno()) from
$p2.transaction))
then
System.out.println($trans1.getOccno());
end
The above will return
3
4 (not 4,3)
Kindly suggest other way of doing this without salience.
Thanks
Salt
--
View this message in context: http://drools.46999.n3.nabble.com/Without-salience-tp4019565.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
13 years, 10 months
before/after behavior for negative pattern
by Rob21
Hi all,
I try to detect the beginning of a scenario which is characterized by an
event happening after no other event of the same type has happened in the
last 90sec.
I can't understand why only the first of those two rules is working.
rule "Detect Scenario beginning"
when
$start : RawEvent()
not RawEvent(id == $start.id, $start after[0ms, 90s] this)
then
System.out.println($start);
end
rule "Detect Scenario beginning alt"
when
$start : RawEvent()
not RawEvent(id == $start.id, this before[0ms, 90s] $start)
then
System.out.println($start);
end
Moreover if the first sent event is a rawEvent none of them will detect it.
Where am i wrong ? (still a beginner with drools)
PS : I already posted it on the forum, but i forgot to complete all the
subscription steps so it was rejected. Sorry for the double post.
--
View this message in context: http://drools.46999.n3.nabble.com/before-after-behavior-for-negative-patt...
Sent from the Drools: User forum mailing list archive at Nabble.com.
13 years, 10 months
ClassNotFoundException
by devan.vanreenen@gmail.com
Hi there,
Please confirm if anyone is able to assist.
I have uploaded several pojo model jars to Guvnor, and resolved all issues
when saving and validating the package configuration in Guvnor and no issue
when building packages.
I get a ClassNotFoundException for classes in a specific jar that I have
uploaded but when I download this jar from Guvnor and inspect jar those
classes are present.
As soon as i remove the rules that use objects from this problematic jar
then the rest of the rules work as expected
Do you have any suggestions on where I can start investigating this?
Please let me know if you require any further information.
Thanks and Regards
Devan
--
View this message in context: http://drools.46999.n3.nabble.com/ClassNotFoundException-tp4019536.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
13 years, 10 months
Best model for planning?
by mvermand
Hi,
I'd like some advice on how to make my model.
I need to plan maintenance-schedules for - let's say - airplanes.
Constraints are:
- planes are only at given moments available for maintenance (when not in
the air ;-)
- maintenance of a planes requires a number of techniciens (with specific
skills).
- techniciens have skills and also shifts and vacation.
Now, first I tought to make the maintenance of a plane the planningEntity.
But I did not know how to populate and match the techniciens.
So, second I tought to make a new Task-class the planningEntity.
A Task is a job that needs to be done by a technicien with specific skills.
Maintaining a plane requires then a number of tasks.
If I choose this model, I think I'll have to pass two Plannings variables to
the Task planningEntity:
1) a Maintenance-fact (Plane + Period + list of required tasks) and
2) a Technicien-fact (?)
Then I'll need to check if availabity of plane and availability of
technicien match and also skill-requirement of task and skills of
technicien.
Do you think this second model is the right one?
Will it perform well?
=> ? matching all combinations of plane availabilty and
techniciens-availability and -skills.
Thanks in advance
--
View this message in context: http://drools.46999.n3.nabble.com/Best-model-for-planning-tp4019464.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
13 years, 10 months
(no subject)
by Post Office
����,��������euW��7���Q�<��0�������S��iV��V~S��K�q�/q�>t�|�����O0��jZ�u����<�����7'���Pf�p7^�`����A~ZGY�����,D��[� �gW���'C���#P��S7���
B�#l�%]�w��B�L����'�j0�>YU�������� �yw�T��~�L��6�F����;[�^o��y8�*/��(Jc�6�W���Ytm��������!4S*����A�E
���Vc��*��,<�~��2���f��A������V����0��:��%�&��d�
u��Cr������`m����4Rc���\�Y��e�mA�J�C%�'�1>������xN���&���JAM�X���P�V�D[F�{��-&C(�B�{�CD���3�E`�����8GJ�^pz(��4���v�
cZ�5.�F#C�W�Ia��[/�0�u?U��T�n��B44���Q
��:���/�-_�-(�?�*>��u��'�D6(�(��qw�`Q��y���Y�
������b��4 ��I�{��^��\?���[�u��5���:NW�h�22����bo��c� ��qy3R��d�2^�i��K�l��r������P�X�]?�rk��n8$L,�nGW`|��4�������Oj��J�yl���xgD���#W��nq�;�{2�Y��Z���t�Q���X�y�0����h$����k�i�;��"sw�,�r�Xn5�����KT��1��;U'5��S�hY���PT4W* %8G���f���H���'�
��R����M���l��uv C[��]2���J�.W�^�������n6�b��w�Y?�YqQs'q�U����X��4SC��wDO}��A�����}�V<�WOH�wK
MM���.��R�n��|�4��}C����|�HF�������} �r|J��;���
������c��^����M�SuE���$�ijz{;���OH?8 5��>�B�
��}M�:���F�#��Y�^�`;�&���b.��LM���(���jU
)E������H���g�u&v���u��a�Q���%7�ACV�^�H"��wpMg����/RgD���(�V�;�������}���u��)��aU���kt��P*��W��2��5e�7T�$��������d^���*��S����W^RR�Hu������n
��AX�a��u��h���.��G�;�m0)7�b���h6N$#q�U���yVb���J�U������Q�v�
�(~nMZ,�q����q�e���k����>T�Z:�`�3�]���
�fM������
--����V���j|N
���b{G6<�������Q��#�7���2�
r:���Fib\�Q�
|�"��D�����M`fS��7�A
13 years, 10 months
wkjltpkfnom m
by Post Office
The original message was received at Mon, 3 Sep 2012 16:00:20 +0530
from 138.182.126.120
----- The following addresses had permanent fatal errors -----
<rules-users(a)lists.jboss.org>
13 years, 10 months